From e575380d2553569544409f35af8a436619f60b2f Mon Sep 17 00:00:00 2001 From: AntonD3 Date: Thu, 7 Dec 2023 16:45:12 +0800 Subject: [PATCH] Fix rust tests --- src/node/zks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/zks.rs b/src/node/zks.rs index 297cb596..bfd53596 100644 --- a/src/node/zks.rs +++ b/src/node/zks.rs @@ -559,7 +559,7 @@ mod tests { let result = node.estimate_fee(mock_request).await.unwrap(); - assert_eq!(result.gas_limit, U256::from(746532)); + assert_eq!(result.gas_limit, U256::from(743357)); assert_eq!(result.max_fee_per_gas, U256::from(250000000)); assert_eq!(result.max_priority_fee_per_gas, U256::from(0)); assert_eq!(result.gas_per_pubdata_limit, U256::from(4080));