Skip to content

Commit

Permalink
Minor change to a mock
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbreak1211 committed Jun 3, 2024
1 parent 0974db9 commit 0378176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mocks/VoteDelegateMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract VoteDelegateMock {

function lock(uint256 wad) external {
gov.transferFrom(msg.sender, address(this), wad);
stake[msg.sender] = stake[msg.sender] + wad;
stake[msg.sender] += wad;
}

function free(uint256 wad) external {
Expand Down

0 comments on commit 0378176

Please sign in to comment.