diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-30 04:49:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-30 04:49:58 +0800 |
commit | 01e3d694a68b55d44d92754db5e84eb2930988ab (patch) | |
tree | 9c0087a12d47dad4b52de65a23dea22783d0a73f /p2p/message.go | |
parent | 9e63798d0362a27b3ef45345d93f4a01c3349516 (diff) | |
download | dexon-01e3d694a68b55d44d92754db5e84eb2930988ab.tar.gz dexon-01e3d694a68b55d44d92754db5e84eb2930988ab.tar.zst dexon-01e3d694a68b55d44d92754db5e84eb2930988ab.zip |
p2p: added received at to peer message
p2p.Msg.ReceivedAt can be used for determining block propagation from
begining to end.
Diffstat (limited to 'p2p/message.go')
-rw-r--r-- | p2p/message.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/p2p/message.go b/p2p/message.go index be6405d6f..5ab5ab73e 100644 --- a/p2p/message.go +++ b/p2p/message.go @@ -22,9 +22,10 @@ import ( // structure, encode the payload into a byte array and create a // separate Msg with a bytes.Reader as Payload for each send. type Msg struct { - Code uint64 - Size uint32 // size of the paylod - Payload io.Reader + Code uint64 + Size uint32 // size of the paylod + Payload io.Reader + ReceivedAt time.Time } // Decode parses the RLP content of a message into |