File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1514,6 +1514,7 @@ mod test {
1514
1514
let mblock_confirmed_consumed = ExecutionCost :: zero ( ) ;
1515
1515
let pox_constants = PoxConstants :: testnet_default ( ) ;
1516
1516
let signer_bitvec = BitVec :: zeros ( 2 ) . expect ( "Failed to create BitVec with length 2" ) ;
1517
+ let block_timestamp = Some ( 123456 ) ;
1517
1518
1518
1519
let payload = observer. make_new_block_processed_payload (
1519
1520
filtered_events,
@@ -1531,6 +1532,7 @@ mod test {
1531
1532
& pox_constants,
1532
1533
& None ,
1533
1534
& Some ( signer_bitvec. clone ( ) ) ,
1535
+ block_timestamp,
1534
1536
) ;
1535
1537
assert_eq ! (
1536
1538
payload
@@ -1582,6 +1584,7 @@ mod test {
1582
1584
let mblock_confirmed_consumed = ExecutionCost :: zero ( ) ;
1583
1585
let pox_constants = PoxConstants :: testnet_default ( ) ;
1584
1586
let signer_bitvec = BitVec :: zeros ( 2 ) . expect ( "Failed to create BitVec with length 2" ) ;
1587
+ let block_timestamp = Some ( 123456 ) ;
1585
1588
1586
1589
let payload = observer. make_new_block_processed_payload (
1587
1590
filtered_events,
@@ -1599,6 +1602,7 @@ mod test {
1599
1602
& pox_constants,
1600
1603
& None ,
1601
1604
& Some ( signer_bitvec. clone ( ) ) ,
1605
+ block_timestamp,
1602
1606
) ;
1603
1607
1604
1608
let event_signer_signature = payload
You can’t perform that action at this time.
0 commit comments