Correct the key and value encoding for the cache

This commit is contained in:
Omar Abdulla
2025-08-16 18:18:43 +03:00
parent c34f5a3d95
commit 91773dd281
7 changed files with 73 additions and 88 deletions
-3
View File
@@ -281,9 +281,6 @@ impl EthereumNode for GethNode {
&self,
transaction: TransactionRequest,
) -> anyhow::Result<alloy::rpc::types::TransactionReceipt> {
let span = tracing::debug_span!("Submitting transaction", ?transaction);
let _guard = span.enter();
let provider = Arc::new(self.provider().await?);
let transaction_hash = *provider.send_transaction(transaction).await?.tx_hash();