Skip to content

Commit

Permalink
evm: address pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
gator-boi committed Feb 26, 2024
1 parent f90cd0f commit 0ec6e70
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ abstract contract WormholeTransceiverState is IWormholeTransceiverState, Transce
IWormhole public immutable wormhole;
IWormholeRelayer public immutable wormholeRelayer;
ISpecialRelayer public immutable specialRelayer;
uint256 public immutable wormholeTransceiver_evmChainId;
uint256 immutable wormholeTransceiver_evmChainId;

// ==================== Constants ================================================
uint256 public constant GAS_LIMIT = 500000;
Expand Down Expand Up @@ -79,12 +79,10 @@ abstract contract WormholeTransceiverState is IWormholeTransceiverState, Transce
}

function _checkImmutables() internal view override {
assert(this.nttManager() == nttManager);
assert(this.nttManagerToken() == nttManagerToken);
super._checkImmutables();
assert(this.wormhole() == wormhole);
assert(this.wormholeRelayer() == wormholeRelayer);
assert(this.specialRelayer() == specialRelayer);
assert(this.wormholeTransceiver_evmChainId() == wormholeTransceiver_evmChainId);
assert(this.consistencyLevel() == consistencyLevel);
}

Expand Down

0 comments on commit 0ec6e70

Please sign in to comment.