Skip to content

Commit 185a52e

Browse files
committed
remove error on payload builder when ev node tx
1 parent e182cdd commit 185a52e

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

crates/node/src/builder.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ where
156156
))
157157
})?;
158158

159+
// Validate sponsor signature for EvNode transactions (early check before EVM execution)
159160
if let ev_primitives::EvTxEnvelope::EvNode(ev) = recovered_tx.inner() {
160161
if let Some(signature) = ev.tx().fee_payer_signature.as_ref() {
161162
ev.tx()
@@ -166,10 +167,6 @@ where
166167
))
167168
})?;
168169
}
169-
170-
return Err(PayloadBuilderError::Internal(RethError::Other(
171-
"EvNode transaction execution not supported yet".into(),
172-
)));
173170
}
174171

175172
// Execute the transaction

0 commit comments

Comments
 (0)