Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: chrismaree <[email protected]>
  • Loading branch information
chrismaree committed Nov 4, 2024
1 parent 268af70 commit dd88eac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -502,9 +502,8 @@ abstract contract SpokePool is

// slither-disable-next-line timestamp
uint256 currentTime = getCurrentTime();
if (quoteTimestamp > currentTime || currentTime - quoteTimestamp > depositQuoteTimeBuffer) {
if (quoteTimestamp > currentTime || currentTime - quoteTimestamp > depositQuoteTimeBuffer)
revert InvalidQuoteTimestamp();
}

// fillDeadline is relative to the destination chain.
// Don’t allow fillDeadline to be more than several bundles into the future.
Expand Down

0 comments on commit dd88eac

Please sign in to comment.