This commit is contained in:
ThomasV 2011-11-14 20:50:42 +01:00
parent 76cf1fea7a
commit c783d6ad3a

View file

@ -705,6 +705,7 @@ if __name__ == '__main__':
to_address = args[1] to_address = args[1]
amount = float(args[2]) amount = float(args[2])
label = ' '.join(args[3:]) label = ' '.join(args[3:])
if options.tx_fee: options.tx_fee = float(options.tx_fee)
except: except:
print "syntax: sendto <recipient> <amount> [label]" print "syntax: sendto <recipient> <amount> [label]"
sys.exit(1) sys.exit(1)
@ -787,7 +788,7 @@ if __name__ == '__main__':
to_address = k to_address = k
break break
print "alias", to_address 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 print h
elif cmd == 'newaddress': elif cmd == 'newaddress':