Merge pull request #35 from throughnothing/pong-event

Fix pong type in Pool Events list?
This commit is contained in:
Braydon Fuller 2015-02-15 00:20:01 -05:00
commit e19734593e

View File

@ -84,7 +84,7 @@ util.inherits(Pool, EventEmitter);
Pool.MaxConnectedPeers = 8;
Pool.RetrySeconds = 30;
Pool.PeerEvents = ['version', 'inv', 'getdata', 'ping', 'ping', 'addr',
Pool.PeerEvents = ['version', 'inv', 'getdata', 'ping', 'pong', 'addr',
'getaddr', 'verack', 'reject', 'alert', 'headers', 'block',
'tx', 'getblocks', 'getheaders', 'error'
];