@@ -629,6 +629,7 @@ pub struct StorableExecutionResult {
629629 pub max_fee_per_gas : Option < U256 > ,
630630 pub gas_price : Option < U256 > ,
631631 pub max_priority_fee_per_gas : Option < U256 > ,
632+ pub timestamp : u64 ,
632633}
633634
634635impl Storable for StorableExecutionResult {
@@ -1034,6 +1035,7 @@ mod test {
10341035 gas_price : Default :: default ( ) ,
10351036 max_fee_per_gas : Default :: default ( ) ,
10361037 max_priority_fee_per_gas : Default :: default ( ) ,
1038+ timestamp : 0 ,
10371039 } ;
10381040
10391041 let receipt: TransactionReceipt = exe_result. clone ( ) . into ( ) ;
@@ -1066,6 +1068,7 @@ mod test {
10661068 gas_price : Default :: default ( ) ,
10671069 max_fee_per_gas : Default :: default ( ) ,
10681070 max_priority_fee_per_gas : Default :: default ( ) ,
1071+ timestamp : 0 ,
10691072 } ;
10701073
10711074 let receipt: TransactionReceipt = exe_result. clone ( ) . into ( ) ;
@@ -1097,6 +1100,7 @@ mod test {
10971100 gas_price : Default :: default ( ) ,
10981101 max_fee_per_gas : Default :: default ( ) ,
10991102 max_priority_fee_per_gas : Default :: default ( ) ,
1103+ timestamp : 0 ,
11001104 } ;
11011105
11021106 let receipt: TransactionReceipt = exe_result. clone ( ) . into ( ) ;
@@ -1127,6 +1131,7 @@ mod test {
11271131 gas_price : Default :: default ( ) ,
11281132 max_fee_per_gas : Default :: default ( ) ,
11291133 max_priority_fee_per_gas : Default :: default ( ) ,
1134+ timestamp : 0 ,
11301135 } ;
11311136
11321137 let receipt: TransactionReceipt = exe_result. clone ( ) . into ( ) ;
0 commit comments