Skip to content

Commit

Permalink
Merge pull request #108 from lidofinance/fix/get-vetoer-state-typo
Browse files Browse the repository at this point in the history
Fix typo in the `getVetoerState().unstETHLockedShares`
  • Loading branch information
Psirex authored Aug 28, 2024
2 parents 6bf5739 + dab02d6 commit dd3bd6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Escrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ contract Escrow is IEscrow {

state.unstETHIdsCount = assets.unstETHIds.length;
state.stETHLockedShares = assets.stETHLockedShares.toUint256();
state.unstETHLockedShares = assets.stETHLockedShares.toUint256();
state.unstETHLockedShares = assets.unstETHLockedShares.toUint256();
state.lastAssetsLockTimestamp = assets.lastAssetsLockTimestamp.toSeconds();
}

Expand Down

0 comments on commit dd3bd6e

Please sign in to comment.