File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ members = ["crates/*"]
33resolver = " 2"
44
55[workspace .package ]
6- version = " 0.14.3 "
6+ version = " 0.14.4 "
77edition = " 2024"
88rust-version = " 1.88"
99authors = [" init4" ]
Original file line number Diff line number Diff line change 2121 "shanghaiTime" : " 0x0" ,
2222 "cancunTime" : " 0x0" ,
2323 "pragueTime" : " 0x0" ,
24+ "osakaTime" : " 0x0" ,
2425 "terminalTotalDifficulty" : null ,
2526 "terminalTotalDifficultyPassed" : false ,
2627 "ethash" : null ,
Original file line number Diff line number Diff line change 2121 "shanghaiTime" : " 0x0" ,
2222 "cancunTime" : " 0x0" ,
2323 "pragueTime" : " 0x0" ,
24+ "osakaTime" : " 0x0" ,
2425 "terminalTotalDifficulty" : null ,
2526 "terminalTotalDifficultyPassed" : false ,
2627 "ethash" : null ,
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ impl SignetTestContext {
316316 let contract_address = deployer. create ( self . nonce ( deployer) ) ;
317317 let tx = TransactionRequest :: default ( )
318318 . from ( deployer)
319- . gas_limit ( 21_000_000 )
319+ . gas_limit ( 16_000_000 )
320320 . with_deploy_code ( COUNTER_DEPLOY_CODE ) ;
321321
322322 let ( _tx, _receipt) = self . process_alloy_tx ( & tx) . await . unwrap ( ) ;
@@ -329,7 +329,7 @@ impl SignetTestContext {
329329 let contract_address = deployer. create ( self . nonce ( deployer) ) ;
330330 let tx = TransactionRequest :: default ( )
331331 . from ( deployer)
332- . gas_limit ( 21_000_000 )
332+ . gas_limit ( 16_000_000 )
333333 . with_deploy_code ( Log :: BYTECODE . clone ( ) ) ;
334334
335335 let ( _tx, _receipt) = self . process_alloy_tx ( & tx) . await . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ async fn test_deploy_contract() {
5252 . from ( deployer)
5353 . max_priority_fee_per_gas ( GWEI_TO_WEI . into ( ) )
5454 . max_fee_per_gas ( GWEI_TO_WEI . into ( ) )
55- . gas_limit ( 21_000_000 )
55+ . gas_limit ( 16_000_000 )
5656 . with_deploy_code ( COUNTER_DEPLOY_CODE ) ;
5757
5858 let ( tx, receipt) = ctx. process_alloy_tx ( & tx) . await . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments