Skip to content

Commit 0232399

Browse files
committed
fix(eth-sender): Fix selector for old batches
Signed-off-by: Danil <[email protected]>
1 parent 7692f31 commit 0232399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/node/eth_sender/src/eth_tx_aggregator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ impl EthTxAggregator {
10051005
&& chain_protocol_version_id.is_pre_gateway()
10061006
{
10071007
&self.functions.post_shared_bridge_execute
1008-
} else if protocol_version.is_pre_interop_fast_blocks() {
1008+
} else if chain_protocol_version_id.is_pre_interop_fast_blocks() {
10091009
&self.functions.post_v26_gateway_execute
10101010
} else {
10111011
&self.functions.post_v29_interop_execute

0 commit comments

Comments
 (0)