diff options
author | Felix Lange <fjl@twurst.com> | 2015-02-20 00:09:13 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-02-20 00:09:13 +0800 |
commit | fa15854a54d1d4505619aa3b3deabb50cd8ca881 (patch) | |
tree | 73a7707e629694ebe66a5cbb52a318f4ada9eb26 /logger | |
parent | dd871e791cdd2aefd001f6c3a11ac9378dde0bf5 (diff) | |
download | go-tangerine-fa15854a54d1d4505619aa3b3deabb50cd8ca881.tar.gz go-tangerine-fa15854a54d1d4505619aa3b3deabb50cd8ca881.tar.zst go-tangerine-fa15854a54d1d4505619aa3b3deabb50cd8ca881.zip |
logger: add P2P disconnected event
Diffstat (limited to 'logger')
-rw-r--r-- | logger/types.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/logger/types.go b/logger/types.go index d14a26643..7ab4a2b8c 100644 --- a/logger/types.go +++ b/logger/types.go @@ -42,6 +42,16 @@ func (l *P2PConnected) EventName() string { return "p2p.connected" } +type P2PDisconnected struct { + NumConnections int `json:"num_connections"` + RemoteId string `json:"remote_id"` + LogEvent +} + +func (l *P2PDisconnected) EventName() string { + return "p2p.disconnected" +} + type EthMinerNewBlock struct { BlockHash string `json:"block_hash"` BlockNumber int `json:"block_number"` @@ -117,16 +127,6 @@ func (l *EthTxReceived) EventName() string { // return "p2p.handshaked" // } -// type P2PDisconnected struct { -// NumConnections int `json:"num_connections"` -// RemoteId string `json:"remote_id"` -// LogEvent -// } - -// func (l *P2PDisconnected) EventName() string { -// return "p2p.disconnected" -// } - // type P2PDisconnecting struct { // Reason string `json:"reason"` // RemoteId string `json:"remote_id"` |