diff options
| author | Gregory Maxwell <[email protected]> | 2012-06-23 19:21:13 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-06-23 19:21:13 -0700 |
| commit | 817ee0d826087d418b5f0bffcdd92429574284e2 (patch) | |
| tree | 6918d60b6fe3d56d4142ce1d59fc966320dd97a2 /src/main.cpp | |
| parent | Merge pull request #1503 from gmaxwell/testnet_tweaks (diff) | |
| parent | Some documentation about tor (diff) | |
| download | discoin-817ee0d826087d418b5f0bffcdd92429574284e2.tar.xz discoin-817ee0d826087d418b5f0bffcdd92429574284e2.zip | |
Merge pull request #1174 from sipa/torhs
Tor hidden service support
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 27802a498..b46866221 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2426,7 +2426,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) pfrom->fSuccessfullyConnected = true; - printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight); + printf("receive version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str()); cPeerBlockCounts.input(pfrom->nStartingHeight); } |