Overview
Comment: | Fixed name of keepalive statistic for unique peers |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
173b00efe3f98e1012fb0970caca84d5 |
User & Date: | rkeene on 2019-01-12 21:59:59 |
Other Links: | manifest | tags |
Context
2019-01-13
| ||
22:10 | Updated to make whether or not to use the amalgamation a separate configuration option check-in: 9532d401f5 user: rkeene tags: trunk | |
2019-01-12
| ||
21:59 | Fixed name of keepalive statistic for unique peers check-in: 173b00efe3 user: rkeene tags: trunk | |
21:48 | Better handling of stats -- keep them in a transient SQLite3 DB check-in: a010d6c0a7 user: rkeene tags: trunk | |
Changes
Modified nano.tcl from [7eecb89b12] to [184c8f262e].
︙ | ︙ | |||
3340 3341 3342 3343 3344 3345 3346 | } } # Stats ::nano::node::stats::incr [list keepalive count] ::nano::node::stats::incr [list keepalive peers] [llength $peers] foreach peer $peers { | | | 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 | } } # Stats ::nano::node::stats::incr [list keepalive count] ::nano::node::stats::incr [list keepalive peers] [llength $peers] foreach peer $peers { ::nano::node::stats::lappend [list keepalive peersUnique] $peer } return "" } proc ::nano::protocol::parse::node_id_handshake {extensions messageData} { array set result [list] |
︙ | ︙ |