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 6f32282 commit 546aba9Copy full SHA for 546aba9
crates/batcher/src/lib.rs
@@ -1524,8 +1524,7 @@ impl Batcher {
1524
let gas_price = gas_price.map_err(|_| BatcherError::GasPriceError)?;
1525
1526
{
1527
- let mut latest_block_gas_price = self.latest_block_gas_price.write().await;
1528
- *latest_block_gas_price = gas_price;
+ *self.latest_block_gas_price.write().await = gas_price;
1529
1530
let new_disable_verifiers = disable_verifiers
1531
.map_err(|e| BatcherError::DisabledVerifiersError(e.to_string()))?;
0 commit comments