You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(I'm a self-taught amateur in c++ so forgive me but here's what I came up with)
'good' (bool) is literally just the retval of calling Cnode.Run() in navcoin.cpp:215. good=true if node is up, not if not.
'percent1d' et al are indeed uptime.
'svcs' = Caddr.nServices which i finally traced back to void CAddress::Init() { nServices = NODE_NETWORK;
and another search led me to find that this is defined as: NODE_NETWORK = (1 << 0)
..and a google led me to finding out this is a 'bit shifter'. Every node has 0000000d, which would be what, 13 in hex. No idea what that means.
It's been fun poking around. Thanks for linking me to the seeder.
After doing a little fiddling with this data, I have some questions if I could.
Thank you for your work, I'll happily send you some Nav if you would like a tip.
The text was updated successfully, but these errors were encountered: