diff options
| author | Jon Atack <[email protected]> | 2020-08-09 21:49:31 +0200 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2020-08-15 12:03:16 +0200 |
| commit | 02fbe3ae0bd91cbab2828cb7aa46f6493c82f026 (patch) | |
| tree | da7cefaa9baa4e824c5088e0cf93544df9c49edb /src/net.h | |
| parent | Merge #19457: wallet: Cleanup wallettool salvage and walletdb extraneous decl... (diff) | |
| download | discoin-02fbe3ae0bd91cbab2828cb7aa46f6493c82f026.tar.xz discoin-02fbe3ae0bd91cbab2828cb7aa46f6493c82f026.zip | |
net: add nLastBlockTime/TXTime to CNodeStats, CNode::copyStats
Diffstat (limited to 'src/net.h')
| -rw-r--r-- | src/net.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -619,6 +619,8 @@ public: bool fRelayTxes; int64_t nLastSend; int64_t nLastRecv; + int64_t nLastTXTime; + int64_t nLastBlockTime; int64_t nTimeConnected; int64_t nTimeOffset; std::string addrName; |