File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,13 @@ contract LifMarketValidationMechanism is Ownable {
121
121
funded = true ;
122
122
}
123
123
124
+ /**
125
+ @dev Change the LifToken address
126
+ */
127
+ function changeToken (address newToken ) public onlyOwner {
128
+ lifToken = LifToken (newToken);
129
+ }
130
+
124
131
/**
125
132
@dev calculates the exponential distribution curve. It determines how much
126
133
wei can be distributed back to the foundation every month. It starts with
Original file line number Diff line number Diff line change @@ -69,6 +69,13 @@ contract VestedPayment is Ownable {
69
69
token = LifToken (tokenAddress);
70
70
}
71
71
72
+ /**
73
+ @dev Change the LifToken address
74
+ */
75
+ function changeToken (address newToken ) public onlyOwner {
76
+ token = LifToken (newToken);
77
+ }
78
+
72
79
/**
73
80
@dev Get how many tokens are available to be claimed
74
81
*/
You can’t perform that action at this time.
0 commit comments