Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheQuantumPhysicist committed Jan 31, 2024
1 parent 2758dca commit b6f99e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/wallet_tx_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ async def async_test(self):
# transfer all except 1 coin to the new acc, and add 0.1 fee
outputs = [ TxOutput(acc1_address, str(coins_to_send - 1)), TxOutput(change_address, "0.9") ]

# check we have 1 unsepnt utxo
# check we have 1 unspent utxo
utxos = await wallet.list_utxos()
assert_equal(len(utxos), 1)

# compose a transaction with that utxo and 2 outputs
output = await wallet.compose_transaction(outputs, utxos)
assert_in("The hex encoded transaction is", output)
# check the fees incude the 0.1
# check the fees include the 0.1
assert_in(f"Coins amount: 0.1", output)
encoded_tx = output.split('\n')[1]

Expand Down

0 comments on commit b6f99e0

Please sign in to comment.