From 702f0e8b00858d6546774047a73dc5b4f658fc19 Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Wed, 4 Dec 2024 12:01:00 -0600 Subject: [PATCH] chore: fix tests --- src/node/zks.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/zks.rs b/src/node/zks.rs index 101d385b..11b0de22 100644 --- a/src/node/zks.rs +++ b/src/node/zks.rs @@ -623,10 +623,10 @@ mod tests { let result = node.estimate_fee(mock_request).await.unwrap(); - assert_eq!(result.gas_limit, U256::from(279779)); + assert_eq!(result.gas_limit, U256::from(409123)); assert_eq!(result.max_fee_per_gas, U256::from(45250000)); assert_eq!(result.max_priority_fee_per_gas, U256::from(0)); - assert_eq!(result.gas_per_pubdata_limit, U256::from(1658)); + assert_eq!(result.gas_per_pubdata_limit, U256::from(3143)); } #[tokio::test]