Skip to content

Commit

Permalink
Fix hash mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil committed Nov 11, 2024
1 parent b21df0c commit d8e046e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adapters/p2p2core/block.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func AdaptBlockHeader(h *spec.SignedBlockHeader, eventsBloom *bloom.BloomFilter)
PriceInWei: AdaptUint128(h.DataGasPriceWei),
PriceInFri: AdaptUint128(h.DataGasPriceFri),
},
GasPrice: AdaptUint128(h.GasPriceFri),
GasPriceSTRK: AdaptUint128(h.GasPriceWei),
GasPrice: AdaptUint128(h.GasPriceWei),
GasPriceSTRK: AdaptUint128(h.GasPriceFri),
}
}

Expand Down

0 comments on commit d8e046e

Please sign in to comment.