commit c783d6ad3aa42c1811c7bfcd08e7ddf64a808a71
parent 76cf1fea7aecc97271433a49675e022c6543a76a
Author: ThomasV <thomasv@gitorious>
Date: Mon, 14 Nov 2011 20:50:42 +0100
fee
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/client/electrum.py b/client/electrum.py
@@ -705,6 +705,7 @@ if __name__ == '__main__':
to_address = args[1]
amount = float(args[2])
label = ' '.join(args[3:])
+ if options.tx_fee: options.tx_fee = float(options.tx_fee)
except:
print "syntax: sendto <recipient> <amount> [label]"
sys.exit(1)
@@ -787,7 +788,7 @@ if __name__ == '__main__':
to_address = k
break
print "alias", to_address
- r, h = wallet.send( to_address, amount, label, password, cmd=='sendto', fee=options.tx_fee )
+ r, h = wallet.send( to_address, amount, label, password, cmd=='sendto', fee = options.tx_fee )
print h
elif cmd == 'newaddress':