Skip to content

Instantly share code, notes, and snippets.

Created March 29, 2015 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/fa9f193774ca76812121 to your computer and use it in GitHub Desktop.
Save anonymous/fa9f193774ca76812121 to your computer and use it in GitHub Desktop.
check for comment via rpc
from bitcoin import *
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
rpc = AuthServiceProxy(os.environ['BTCRPCURL'])
listtxns = rpc.listtransactions()
[ access(x, "comment") for x in listtxs if 'comment' in x]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment