So to begin I’ve little or no expertise and this can be a easy reply however I am unable to discover it simply.
I think that I’m utilizing the unsuitable factor to attain what I’m making an attempt to do.
I am parsing out the blocks domestically to get transactional data. Then I’m making an attempt to take every pockets addr with a transaction and examine the present stability.
After I run this code I get this error “(‘Pockets file not specified (should request pockets RPC by means of /pockets/ uri-path).’,)” which makes me suppose I’m not utilizing the proper methodology.
If I am not utilizing the proper methodology, what ought to I be utilizing?
received_info = rpc_connection.listreceivedbyaddress(1, False, True, str([output_address]))
if received_info:
output_file.write(f" Acquired by Deal with Information:n")
for information in received_info:
output_file.write(f" Deal with: {data['address']}n")
output_file.write(f" Quantity Acquired: {data['amount']} BTCn")
output_file.write(f" Confirmations: {data['confirmations']}nn")