From 6408b3221a703b70b6ff5085321e76ca8264a31a Mon Sep 17 00:00:00 2001 From: VolodymyrBg Date: Sat, 17 Jan 2026 01:29:43 +0200 Subject: [PATCH] fix: correct mock get_tx_receipt log --- crates/client/src/goat_chain/mock_goat_adaptor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/client/src/goat_chain/mock_goat_adaptor.rs b/crates/client/src/goat_chain/mock_goat_adaptor.rs index 01b7e5b0..6d87fd03 100644 --- a/crates/client/src/goat_chain/mock_goat_adaptor.rs +++ b/crates/client/src/goat_chain/mock_goat_adaptor.rs @@ -79,7 +79,7 @@ impl ChainAdaptor for MockAdaptor { } async fn get_tx_receipt(&self, tx_hash: &str) -> anyhow::Result> { - info!("call is_tx_execute_success"); + info!("call get_tx_receipt"); Ok(if let Ok(tx_receipt) = self.tx_receipts.lock() { tx_receipt.get(tx_hash).cloned() } else {