@@ -534,7 +534,7 @@ class NetinfoRequestHandler : public BaseRequestHandler
534
534
PingTimeToString (peer.ping ),
535
535
peer.last_send ? ToString (m_time_now - peer.last_send ) : " " ,
536
536
peer.last_recv ? ToString (m_time_now - peer.last_recv ) : " " ,
537
- peer.last_trxn ? ToString ((m_time_now - peer.last_trxn ) / 60 ) : " " ,
537
+ peer.last_trxn ? ToString ((m_time_now - peer.last_trxn ) / 60 ) : peer. is_block_relay ? " * " : " " ,
538
538
peer.last_blck ? ToString ((m_time_now - peer.last_blck ) / 60 ) : " " ,
539
539
strprintf (" %s%s" , peer.is_bip152_hb_to ? " ." : " " , peer.is_bip152_hb_from ? " *" : " " ),
540
540
m_max_addr_processed_length, // variable spacing
@@ -625,6 +625,7 @@ class NetinfoRequestHandler : public BaseRequestHandler
625
625
" send Time since last message sent to the peer, in seconds\n "
626
626
" recv Time since last message received from the peer, in seconds\n "
627
627
" txn Time since last novel transaction received from the peer and accepted into our mempool, in minutes\n "
628
+ " \" *\" - the peer requested we not relay transactions to it (relaytxes is false)\n "
628
629
" blk Time since last novel block passing initial validity checks received from the peer, in minutes\n "
629
630
" hb High-bandwidth BIP152 compact block relay\n "
630
631
" \" .\" (to) - we selected the peer as a high-bandwidth peer\n "
0 commit comments