Skip to content

Commit

Permalink
fix init token bug for VotingEscrow
Browse files Browse the repository at this point in the history
  • Loading branch information
ququzone committed Jan 15, 2024
1 parent 696aca0 commit 73f4a50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LST Token: 0x180dC617701A507239659215D19FA142eD3B91A7
BalanceLogicLibrary deployed to 0xAb51f1344a99cA04131B735Fc399bF0840841e72
DelegationLogicLibrary deployed to 0x269eF19C20e2Cd8952ab43082CDCE1b26Ba3719B
Forwarder deployed to 0x050D779Bf93A7b95D27e676EcdAFe255C45e982b
VotingEscrow deployed to 0xB85e1FEb8d1BB1eb9BD257B6cD1ff98Dc94C70dD
VotingEscrow deployed to 0x8F93391837816D1a6E5282dAFb1aF01D6f18b714
Trig deployed to 0xd66fe3deD9d8af22Ea507B18cF8C263F505bbacd
PerlinNoise deployed to 0x86a24be33e709915a630088E64945936F832B477
VeArtProxy deployed to 0x74086C4Db9A153b23A8E17DB42d92d9932Ec7eF7
Expand Down
2 changes: 1 addition & 1 deletion contracts/VotingEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ contract VotingEscrow is IVotingEscrow, ERC2771Context, ReentrancyGuard {
for (uint256 i = 0; i < _tokens.length; i++) {
address _token = _tokens[i];
if (_token != address(0)) {
token[_token] = _pendingTokens[_token];
token[_token] = block.timestamp;
emit TokenActived(_token);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/types/factories/contracts/VotingEscrow__factory.ts

Large diffs are not rendered by default.

0 comments on commit 73f4a50

Please sign in to comment.