Skip to content

Commit 611b13d

Browse files
authored
feat: FeeTokenPricerSet event (#324)
1 parent 8aba166 commit 611b13d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/bridge/ISequencerInbox.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ interface ISequencerInbox is IDelayedMessageProvider {
6969
/// @dev Owner set the buffer config.
7070
event BufferConfigSet(BufferConfig bufferConfig);
7171

72+
/// @dev Owner set the fee token pricer.
73+
event FeeTokenPricerSet(address feeTokenPricer);
74+
7275
function totalDelayedMessagesRead() external view returns (uint256);
7376

7477
function bridge() external view returns (IBridge);

src/bridge/SequencerInbox.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -880,6 +880,7 @@ contract SequencerInbox is DelegateCallAware, GasRefundEnabled, ISequencerInbox
880880
}
881881

882882
feeTokenPricer = feeTokenPricer_;
883+
emit FeeTokenPricerSet(address(feeTokenPricer_));
883884
emit OwnerFunctionCalled(6);
884885
}
885886

0 commit comments

Comments
 (0)