chore: bump alloy 0.9.1 (#13602)

This commit is contained in:
Matthias Seitz
2024-12-31 00:05:10 +01:00
committed by GitHub
parent 0ac4475637
commit e9332f9cc9
4 changed files with 84 additions and 92 deletions

View File

@ -787,7 +787,7 @@ mod tests {
assert_eq!(err.message(), "block not found: canonical hash 0x1a15e3c30cf094a99826869517b16d185d45831d3a494f01030b0001a9d3ebb9");
let err: jsonrpsee_types::error::ErrorObject<'static> =
EthApiError::HeaderNotFound(BlockId::number(100000)).into();
assert_eq!(err.message(), "block not found: number 0x186a0");
assert_eq!(err.message(), "block not found: 0x186a0");
let err: jsonrpsee_types::error::ErrorObject<'static> =
EthApiError::HeaderNotFound(BlockId::latest()).into();
assert_eq!(err.message(), "block not found: latest");

View File

@ -103,15 +103,7 @@ where
) {
let entry = inspect.entry(tx.sender()).or_default();
let tx = tx.clone_into_consensus();
entry.insert(
tx.nonce().to_string(),
TxpoolInspectSummary {
to: tx.to(),
value: tx.value(),
gas: tx.gas_limit(),
gas_price: tx.max_fee_per_gas(),
},
);
entry.insert(tx.nonce().to_string(), tx.into_signed().into());
}
let AllPoolTransactions { pending, queued } = self.pool.all_transactions();