Created
June 24, 2012 01:49
-
-
Save jgarzik/2980975 to your computer and use it in GitHub Desktop.
bitcoin 'getnetstats' output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sample getnetstats JSON-RPC output, just after startup and 9-block sync-up: | |
{ | |
"messages" : { | |
"addr" : [ | |
"15", | |
"286929" | |
], | |
"alert" : [ | |
"4", | |
"828" | |
], | |
"block" : [ | |
"9", | |
"689900" | |
], | |
"inv" : [ | |
"60", | |
"5136" | |
], | |
"tx" : [ | |
"18", | |
"5475" | |
], | |
"verack" : [ | |
"8", | |
"192" | |
], | |
"version" : [ | |
"8", | |
"935" | |
] | |
}, | |
"peers" : { | |
"connected" : 8, | |
"inbound" : 0, | |
"outbound" : 8 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment