@@ -253,18 +253,18 @@ contract Addresses is IAddresses, Test {
253253 view
254254 returns (
255255 string [] memory names ,
256- uint256 [] memory chainIds ,
256+ uint256 [] memory chainIdsList ,
257257 address [] memory addresses
258258 )
259259 {
260260 uint256 length = recordedAddresses.length ;
261261 names = new string [](length);
262- chainIds = new uint256 [](length);
262+ chainIdsList = new uint256 [](length);
263263 addresses = new address [](length);
264264
265265 for (uint256 i = 0 ; i < length; i++ ) {
266266 names[i] = recordedAddresses[i].name;
267- chainIds [i] = recordedAddresses[i].chainId;
267+ chainIdsList [i] = recordedAddresses[i].chainId;
268268 addresses[i] = _addresses[recordedAddresses[i].name][recordedAddresses[i]
269269 .chainId].addr;
270270 }
@@ -281,20 +281,20 @@ contract Addresses is IAddresses, Test {
281281 view
282282 returns (
283283 string [] memory names ,
284- uint256 [] memory chainIds ,
284+ uint256 [] memory chainIdsList ,
285285 address [] memory oldAddresses ,
286286 address [] memory newAddresses
287287 )
288288 {
289289 uint256 length = changedAddresses.length ;
290290 names = new string [](length);
291- chainIds = new uint256 [](length);
291+ chainIdsList = new uint256 [](length);
292292 oldAddresses = new address [](length);
293293 newAddresses = new address [](length);
294294
295295 for (uint256 i = 0 ; i < length; i++ ) {
296296 names[i] = changedAddresses[i].name;
297- chainIds [i] = changedAddresses[i].chainId;
297+ chainIdsList [i] = changedAddresses[i].chainId;
298298 oldAddresses[i] = changedAddresses[i].oldAddress;
299299 newAddresses[i] = _addresses[changedAddresses[i].name][changedAddresses[i]
300300 .chainId].addr;
0 commit comments