We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e182cdd commit 185a52eCopy full SHA for 185a52e
1 file changed
crates/node/src/builder.rs
@@ -156,6 +156,7 @@ where
156
))
157
})?;
158
159
+ // Validate sponsor signature for EvNode transactions (early check before EVM execution)
160
if let ev_primitives::EvTxEnvelope::EvNode(ev) = recovered_tx.inner() {
161
if let Some(signature) = ev.tx().fee_payer_signature.as_ref() {
162
ev.tx()
@@ -166,10 +167,6 @@ where
166
167
168
169
}
-
170
- return Err(PayloadBuilderError::Internal(RethError::Other(
171
- "EvNode transaction execution not supported yet".into(),
172
- )));
173
174
175
// Execute the transaction
0 commit comments