@@ -1317,7 +1317,7 @@ mod tests {
13171317 // 2) Update balance for account
13181318 let mut state = HashMap :: default ( ) ;
13191319
1320- let mut account = revm:: state:: Account :: new_not_existing ( 0 ) ;
1320+ let mut account = revm:: state:: Account :: new_not_existing ( revm :: state :: TransactionId :: ZERO ) ;
13211321 account. info . balance = U256 :: from ( 100 ) ;
13221322 account. status = revm:: state:: AccountStatus :: Touched ;
13231323
@@ -1402,7 +1402,7 @@ mod tests {
14021402 let address = address ! ( "bd6f65c58a46427af4b257cbe231d0ed69ed5508" ) ;
14031403 let mut state = HashMap :: default ( ) ;
14041404
1405- let mut account = revm:: state:: Account :: new_not_existing ( 0 ) ;
1405+ let mut account = revm:: state:: Account :: new_not_existing ( revm :: state :: TransactionId :: ZERO ) ;
14061406 account. status = revm:: state:: AccountStatus :: Touched ;
14071407
14081408 let mut storage = HashMap :: default ( ) ;
@@ -1469,7 +1469,7 @@ mod tests {
14691469 let address = address ! ( "bd6f65c58a46427af4b257cbe231d0ed69ed5508" ) ;
14701470 let mut state = HashMap :: default ( ) ;
14711471
1472- let mut account = revm:: state:: Account :: new_not_existing ( 0 ) ;
1472+ let mut account = revm:: state:: Account :: new_not_existing ( revm :: state :: TransactionId :: ZERO ) ;
14731473 account. status = revm:: state:: AccountStatus :: Touched ;
14741474
14751475 let mut storage = HashMap :: default ( ) ;
@@ -1572,7 +1572,8 @@ mod tests {
15721572
15731573 let mut state = HashMap :: default ( ) ;
15741574
1575- let mut account = revm:: state:: Account :: new_not_existing ( 0 ) ;
1575+ let mut account =
1576+ revm:: state:: Account :: new_not_existing ( revm:: state:: TransactionId :: ZERO ) ;
15761577 account. status = revm:: state:: AccountStatus :: Touched ;
15771578
15781579 let mut storage = HashMap :: default ( ) ;
0 commit comments