Fix variable sort order in contract #238
@ -13,7 +13,6 @@ interface IContributionBalance {
|
||||
|
||||
contract Contributor is Initializable {
|
||||
address public deployer;
|
||||
address public profileManager;
|
||||
IContributionBalance public contributionContract;
|
||||
IToken public tokenContract;
|
||||
|
||||
@ -30,6 +29,8 @@ contract Contributor is Initializable {
|
||||
mapping (uint32 => Contributor) public contributors;
|
||||
uint32 public contributorsCount;
|
||||
|
||||
address public profileManager;
|
||||
|
||||
event ContributorProfileUpdated(uint32 id, bytes32 oldHashDigest, bytes32 newHashDigest); // what should be logged
|
||||
event ContributorAccountUpdated(uint32 id, address oldAccount, address newAccount);
|
||||
event ContributorAdded(uint32 id, address account);
|
||||
|
Loading…
x
Reference in New Issue
Block a user