diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-10 15:24:28 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-10 15:24:28 +0800 |
commit | 7d3f17c9ab10dadf3600c40b3ad099cc98873ba5 (patch) | |
tree | 5507e87980efb018c4817952563c98af60faccbe | |
parent | c8f778ee59b6fd135a8752c20cd97ff0f55296ed (diff) | |
download | dexon-governance-abi-7d3f17c9ab10dadf3600c40b3ad099cc98873ba5.tar.gz dexon-governance-abi-7d3f17c9ab10dadf3600c40b3ad099cc98873ba5.tar.zst dexon-governance-abi-7d3f17c9ab10dadf3600c40b3ad099cc98873ba5.zip |
contracts: dkgMasterPublicKeyProposed -> dkgMasterPublicKeyOffset
-rw-r--r-- | contracts/Governance.sol | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contracts/Governance.sol b/contracts/Governance.sol index c8dbd32..daef5ad 100644 --- a/contracts/Governance.sol +++ b/contracts/Governance.sol @@ -60,8 +60,8 @@ contract Governance { // 11: dkgMasterPublicKeys bytes[] public dkgMasterPublicKeys; - // 12: dkgMasterPublicKeyProposed - mapping(bytes32 => bool) public dkgMasterPublicKeyProposed; + // 12: dkgMasterPublicKeyOffset + mapping(bytes32 => uint256) public dkgMasterPublicKeyOffset; // 13: dkgComplaints bytes[] public dkgComplaints; |