electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ee20910c653403d7f9338b38c0b83e1a64d655fd
parent a3cd33fe0364b326365b86f62424a212d03e87d0
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 31 May 2015 17:21:02 +0200

fix signtransaction flags

Diffstat:
Melectrum | 4++++
Mlib/commands.py | 6+++---
2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/electrum b/electrum @@ -179,6 +179,10 @@ def run_cmdline(config): cmdname = config.get('cmd') cmd = known_commands[cmdname] + if cmdname == 'signtransaction' and config.get('privkey'): + cmd.requires_wallet = False + cmd.requires_password = False + # arguments passed to function args = map(lambda x: config.get(x), cmd.params) # options diff --git a/lib/commands.py b/lib/commands.py @@ -85,15 +85,15 @@ register_command('listunspent', 1, 1, 0, [], [], 'List unspent outputs', register_command('getaddressunspent', 1, 0, 0, ['address'], [], 'Returns the list of unspent inputs for an address', '') register_command('mktx', 0, 1, 1, ['address', 'amount'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create signed transaction', '') register_command('payto', 1, 1, 1, ['address', 'amount'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create and broadcast a transaction.', '') -register_command('mktx_csv', 0, 1, 1, ['csv_file'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create a signed transaction', '') -register_command('payto_csv', 1, 1, 1, ['csv_file'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create and broadcast a transaction.', '') +register_command('mktx_csv', 0, 1, 1, ['csv_file'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create multi-output transaction', '') +register_command('payto_csv', 1, 1, 1, ['csv_file'], ['tx_fee', 'from_addr', 'change_addr', 'nocheck'], 'Create and broadcast multi-output transaction.', '') register_command('password', 0, 1, 1, [], [], 'Change your password', '') register_command('restore', 1, 1, 0, [], ['gap_limit', 'mpk', 'concealed'], 'Restore a wallet from seed', '') register_command('searchcontacts', 0, 1, 0, ['query'], [], 'Search through contacts, return matching entries', '') register_command('setconfig', 0, 0, 0, ['key', 'value'], [], 'Set a configuration variable', '') register_command('setlabel', 0, 1, 0, ['item', 'label'], [], 'Assign a label to an item', 'Item may be a bitcoin address or a transaction ID') register_command('sendtx', 1, 0, 0, ['tx'], [], 'Broadcast a transaction to the network', '') -register_command('signtransaction', 0, 0, 0, ['tx'], ['privkey'], +register_command('signtransaction', 0, 1, 1, ['tx'], ['privkey'], 'Sign a transaction', 'The wallet keys will be used unless a private key is provided.') register_command('signmessage', 0, 1, 1, ['address', 'message'], [], 'Sign a message with a key', 'Use quotes if your message contains whitespaces')