Skip to content

Instantly share code, notes, and snippets.

@Christewart
Created March 19, 2016 20:39
Show Gist options
  • Save Christewart/c1cbfa3d50ff585d2be4 to your computer and use it in GitHub Desktop.
Save Christewart/c1cbfa3d50ff585d2be4 to your computer and use it in GitHub Desktop.
Bitcoin Core transaction to stdout in hex format
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss << tx;
printf("Transaction: %s\n", HexStr(ss).c_str());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment