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 2bdb83f commit 9b657a5Copy full SHA for 9b657a5
crates/ingress-rpc/src/service.rs
@@ -148,14 +148,12 @@ fn validate_backrun_bundle_limits(
148
}
149
if txs_count > max_backrun_txs {
150
return Err(format!(
151
- "Backrun bundle exceeds max transaction count: {} > {}",
152
- txs_count, max_backrun_txs
+ "Backrun bundle exceeds max transaction count: {txs_count} > {max_backrun_txs}",
153
));
154
155
if total_gas_limit > max_backrun_gas_limit {
156
157
- "Backrun bundle exceeds max gas limit: {} > {}",
158
- total_gas_limit, max_backrun_gas_limit
+ "Backrun bundle exceeds max gas limit: {total_gas_limit} > {max_backrun_gas_limit}",
159
160
161
Ok(())
0 commit comments