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 19517bf commit 155ba20Copy full SHA for 155ba20
crates/ingress-rpc/src/validation.rs
@@ -234,7 +234,8 @@ pub fn validate_bundle(
234
for tx_hash in &tx_hashes {
235
if !bundle.reverting_tx_hashes.contains(tx_hash) {
236
return Err(EthApiError::InvalidParams(
237
- "Transaction hash not found in reverting_tx_hashes".into(),
+ "Revert protection is not supported. reverting_tx_hashes must include all hashes"
238
+ .into(),
239
)
240
.into_rpc_err());
241
}
0 commit comments