From 5930a1831c8cfd7cc8867a9ec0af512887f1bbf7 Mon Sep 17 00:00:00 2001 From: FiveMovesAhead Date: Thu, 9 May 2024 11:34:22 +0800 Subject: [PATCH] Fix variable name typo. --- tig-utils/src/eth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tig-utils/src/eth.rs b/tig-utils/src/eth.rs index e0e9cfa..b835c4e 100644 --- a/tig-utils/src/eth.rs +++ b/tig-utils/src/eth.rs @@ -81,7 +81,7 @@ mod web3_feature { let gnosis_safe = Contract::from_json( eth.clone(), - H160::from_str(&gnosis_safe_address)?, + H160::from_str(&address)?, GNOSIS_SAFE_ABI.as_bytes(), ) .unwrap();