Skip to content

Commit

Permalink
Add missing comma (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbellem committed Jun 8, 2016
1 parent a8d203f commit 944fead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Moving ``10000`` satoshis from ``alice`` to ``bob``:
>>> from transactions import Transactions
>>> transactions = Transactions(testnet=True)
>>> tx = transactions.create(alice (bob, 10000))
>>> tx = transactions.create(alice, (bob, 10000))
>>> tx_signed = transactions.sign(tx, 'alice master secret')
>>> transactions.push(tx_signed)
Expand Down

0 comments on commit 944fead

Please sign in to comment.