Skip to content

Commit

Permalink
Fix rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil committed Jan 16, 2025
1 parent 38eed5c commit b1a4fbe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sync/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,10 @@ func (s *Synchronizer) storeEmptyPending(latestHeader *core.Header) error {
Timestamp: uint64(time.Now().Unix()),
ProtocolVersion: latestHeader.ProtocolVersion,
EventsBloom: core.EventsBloom(receipts),
GasPrice: latestHeader.GasPrice,
GasPriceSTRK: latestHeader.GasPriceSTRK,
L1GasPriceETH: latestHeader.L1GasPriceETH,
L1GasPriceSTRK: latestHeader.L1GasPriceSTRK,
L2GasPriceETH: latestHeader.L2GasPriceETH,
L2GasPriceSTRK: latestHeader.L2GasPriceSTRK,
},
Transactions: make([]core.Transaction, 0),
Receipts: receipts,
Expand Down

0 comments on commit b1a4fbe

Please sign in to comment.