| 751 | } |
| 752 | |
| 753 | static void OutputTxHash(const CTransaction& tx) |
| 754 | { |
| 755 | std::string strHexHash = tx.GetHash().GetHex(); // the hex-encoded transaction hash (aka the transaction id) |
| 756 | |
| 757 | tfm::format(std::cout, "%s\n", strHexHash); |
| 758 | } |
| 759 | |
| 760 | static void OutputTxHex(const CTransaction& tx) |
| 761 | { |