| 518 | } |
| 519 | |
| 520 | static void OutputTxJSON(const CTransaction& tx) |
| 521 | { |
| 522 | UniValue entry(UniValue::VOBJ); |
| 523 | TxToUniv(tx, uint256(), entry); |
| 524 | |
| 525 | string jsonOutput = entry.write(4); |
| 526 | fprintf(stdout, "%s\n", jsonOutput.c_str()); |
| 527 | } |
| 528 | |
| 529 | static void OutputTxHash(const CTransaction& tx) |
| 530 | { |