This commit is contained in:
ThomasV 2011-11-14 20:50:42 +01:00
parent 76cf1fea7a
commit c783d6ad3a
1 changed files with 2 additions and 1 deletions

View File

@ -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':