Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
Fix bitcoin_test for new gas multiplier logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikhil Suri authored and 0x0ece committed Jun 28, 2023
1 parent c955158 commit 4c5cc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/bitcoin/bitcoin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (s *CrosschainTestSuite) TestFetchTxInput() {
require.EqualValues(1, btcInput.UnspentOutputs[0].Index)
// string should be reversed
require.EqualValues("27e07074f7fbc5a66f914900a24dcb02bded831c5723bf7b87a103bb609497c4", hex.EncodeToString(btcInput.UnspentOutputs[0].Hash))
require.EqualValues(1, btcInput.GasPricePerByte.Uint64())
require.EqualValues(60, btcInput.GasPricePerByte.Uint64())
}

func (s *CrosschainTestSuite) TestNewNativeTransfer() {
Expand Down

0 comments on commit 4c5cc20

Please sign in to comment.