File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ abstract contract TransceiverRegistry {
40
40
error NonRegisteredTransceiver (address transceiver );
41
41
error TransceiverAlreadyEnabled (address transceiver );
42
42
43
- event TransceiverAdded (address transceiver );
44
- event TransceiverRemoved (address transceiver );
45
-
46
43
modifier onlyTransceiver () {
47
44
if (! _getTransceiverInfosStorage ()[msg .sender ].enabled) {
48
45
revert CallerNotTransceiver (msg .sender );
@@ -150,8 +147,6 @@ abstract contract TransceiverRegistry {
150
147
}
151
148
_enabledTransceiverBitmap.bitmap = updatedEnabledTransceiverBitmap;
152
149
153
- emit TransceiverAdded (transceiver);
154
-
155
150
_checkTransceiversInvariants ();
156
151
157
152
return transceiverInfos[transceiver].index;
@@ -196,8 +191,6 @@ abstract contract TransceiverRegistry {
196
191
}
197
192
assert (removed);
198
193
199
- emit TransceiverRemoved (transceiver);
200
-
201
194
_checkTransceiversInvariants ();
202
195
// we call the invariant check on the transceiver here as well, since
203
196
// the above check only iterates through the enabled transceivers.
You can’t perform that action at this time.
0 commit comments