| 791 | } |
| 792 | |
| 793 | static void OutputTxHash(const CTransaction& tx) |
| 794 | { |
| 795 | std::string strHexHash = tx.GetHash().GetHex(); // the hex-encoded transaction hash (aka the transaction id) |
| 796 | |
| 797 | tfm::format(std::cout, "%s\n", strHexHash); |
| 798 | } |
| 799 | |
| 800 | static void OutputTxHex(const CTransaction& tx) |
| 801 | { |