From 0ebed9b15a0d63b96d30eaa9fba1d3e813a8caeb Mon Sep 17 00:00:00 2001 From: Xabi Losada Date: Fri, 22 Nov 2024 15:43:31 +0700 Subject: [PATCH] fix: increase expected cost for deploying context contracts in Near --- contracts/context-config/tests/sandbox.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/context-config/tests/sandbox.rs b/contracts/context-config/tests/sandbox.rs index 612f10890..5a6ed2002 100644 --- a/contracts/context-config/tests/sandbox.rs +++ b/contracts/context-config/tests/sandbox.rs @@ -1161,8 +1161,8 @@ async fn test_storage_usage_matches_code_size() -> eyre::Result<()> { let node1_balance = node1_balance_after; assert!( - diff < NearToken::from_millinear(10), - "Node1 balance should not be reduced by more than 10 milliNEAR, but was reduced by {}", + diff < NearToken::from_millinear(15), + "Node1 balance should not be reduced by more than 15 milliNEAR, but was reduced by {}", diff );