@@ -49,7 +49,7 @@ const DRIP_CAP_RESET_SECONDS: i64 = 86400; // 24 hours
4949/// Maximum gas limit for mainnet including buffer.
5050const MAX_MAINNET_GAS_LIMIT : u64 = 10_000_000 ;
5151/// Maximum gas limit for calibnet including buffer.
52- const MAX_CALIBNET_GAS_LIMIT : u64 = 30_000_000 ;
52+ const MAX_CALIBNET_GAS_LIMIT : u64 = 100_000_000 ;
5353
5454/// Maximum gas fee cap for mainnet including buffer.
5555static MAX_MAINNET_GAS_FEE_CAP : LazyLock < TokenAmount > =
@@ -271,7 +271,7 @@ mod tests {
271271 assert ! ( calibnet_fil_faucet. transaction_base_url( ) . is_some( ) ) ;
272272 assert_eq ! ( calibnet_fil_faucet. token_type( ) , TokenType :: Native ) ;
273273 assert_eq ! ( calibnet_fil_faucet. chain_id( ) , 314159 ) ;
274- assert_eq ! ( calibnet_fil_faucet. max_gas_limit( ) , 30_000_000 ) ;
274+ assert_eq ! ( calibnet_fil_faucet. max_gas_limit( ) , MAX_CALIBNET_GAS_LIMIT ) ;
275275 assert_eq ! (
276276 calibnet_fil_faucet. max_gas_fee_cap( ) ,
277277 TokenAmount :: from_atto( 200_000 )
@@ -310,7 +310,10 @@ mod tests {
310310 )
311311 ) ;
312312 assert_eq ! ( calibnet_usdfc_faucet. chain_id( ) , 314159 ) ;
313- assert_eq ! ( calibnet_usdfc_faucet. max_gas_limit( ) , 30_000_000 ) ;
313+ assert_eq ! (
314+ calibnet_usdfc_faucet. max_gas_limit( ) ,
315+ MAX_CALIBNET_GAS_LIMIT
316+ ) ;
314317 assert_eq ! (
315318 calibnet_usdfc_faucet. max_gas_premium( ) ,
316319 TokenAmount :: from_atto( 200_000 )
0 commit comments