Skip to content

Commit

Permalink
Fix bad escape value.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardkiss committed Dec 6, 2021
1 parent 1a5ccfa commit 45e0d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/btc/segwit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_segwit_create_tx(self):
key1 = network.keys.private(1)
coin_value = 5000000
script = network.contract.for_p2pkh_wit(key1.hash160())
tx_hash = b'\ee' * 32
tx_hash = b'\xee' * 32
tx_out_index = 0
spendable = Tx.Spendable(coin_value, script, tx_hash, tx_out_index)
key2 = network.keys.private(2)
Expand Down

0 comments on commit 45e0d6b

Please sign in to comment.