Time of propagation

+1 vote
Which is the best way of measuring time of propagation between nodes?
asked Mar 22, 2016 by SlobodanMargetic

1 Answer

+1 vote
 
Best answer

Use ping then getpeerinfo to get basic round-trip time measurements for the connections between nodes. If you want to measure actual transaction propagation time, you can poll getrawmempool to see a list of transaction IDs in each node's memory pool (which is where they propagate to until confirmed).

answered Mar 22, 2016 by MultiChain
selected Mar 23, 2016 by SlobodanMargetic
...