Dear guys;
I use this code:
from bitcoinrpc.authproxy import *
access = AuthServiceProxy("PRIVATEDETAILS")
print access.getbalance()
txid = 'aedf77851ee49a85857126b9003f8058c355c7e30e51a8ef5c74042a73ab247f'
printa = access.gettransaction(txid)
It doens't work.
Python gaves me this error:
raise JSONRPCException(response['error'])
bitcoinrpc.authproxy.JSONRPCException
The call of function access.getbalance() works fine.
Any idea how to fix this?
Kind regards;