Skip to content

Commit

Permalink
EVM: Fix compiler warnings from NttManagerNoRateLimiting
Browse files Browse the repository at this point in the history
  • Loading branch information
bruce-riley committed Sep 24, 2024
1 parent 8ab37c4 commit d6197a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/src/NttManager/NttManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ contract NttManager is INttManager, RateLimiter, ManagerBase {
bytes32 digest
) external virtual nonReentrant whenNotPaused {
// find the message in the queue
InboundQueuedTransfer memory queuedTransfer = getInboundQueuedTransfer(digest);
InboundQueuedTransfer memory queuedTransfer = RateLimiter.getInboundQueuedTransfer(digest);
if (queuedTransfer.txTimestamp == 0) {
revert InboundQueuedTransferNotFound(digest);
}
Expand Down

0 comments on commit d6197a5

Please sign in to comment.