We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23f550b + 660a1b3 commit 7e41153Copy full SHA for 7e41153
ledger/template/ethereum-on-azure/permissioning-contracts/validation-set/Admin.sol
@@ -104,8 +104,7 @@ contract AdminSet {
104
105
// Solidity doesn't support return of dynamic sized arrays
106
function getAddressList() public view callerIsOwner returns (address[200] staticList) {
107
- for (uint i = 0; i < addressList.length; i++)
108
- {
+ for (uint i = 0; i < addressList.length; i++) {
109
staticList[i] = addressList[i];
110
}
111
@@ -144,4 +143,4 @@ contract AdminSet {
144
143
require(owner == msg.sender);
145
_;
146
147
-}
+}
0 commit comments