1
I have got the api working and i can run commands like
access = AuthServiceProxy("http://root:123@127.0.0.1:8332")
access.getinfo()
However not sure how to use more complicated commands such as: move "fromaccount" "toaccount" amount ( minconf "comment" )
Tried something like this, but i get a syntax error in python.
name = "bob"
name2 = "sam"
balance = 0.0001
access.move(name name2 balance)
Doing it like this i get JSONRPCException:
name = "bob"
name2 = "sam"
balance = 0.0001
access.move('%s' '%s' '%s'), (name, name2, balance)
Any help appreciated.
Do
bobandsamrepresentaccountsin your bitcoin-core wallet? – George Kimionis – 2015-04-20T12:36:52.313yes, those accounts exist. – hash tables – 2015-04-20T12:46:20.243
try this one:
acess.move(name, name2, balance), Sam and Bob should be bitcoin address. – moshaholo – 2015-04-20T14:25:04.663