aboutsummaryrefslogtreecommitdiffstats
path: root/eth/peer.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-05-20 17:29:07 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-05-20 17:29:07 +0800
commitadaa49d2cc55d5c3c7cc5266e80995b9a21adcab (patch)
treef5c78da61ce00c637b6f05932162a645ba8581d1 /eth/peer.go
parent79042223dc5f2ae5d4a2ed73d18907440a963093 (diff)
parent3c8227b935fdc9eda7a6cfacc2e0d0d189e7bb36 (diff)
downloaddexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar.gz
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar.bz2
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar.lz
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar.xz
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.tar.zst
dexon-adaa49d2cc55d5c3c7cc5266e80995b9a21adcab.zip
Merge pull request #1051 from karalabe/fix-odd-naming
eth: fix odd method names in peer set
Diffstat (limited to 'eth/peer.go')
-rw-r--r--eth/peer.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/eth/peer.go b/eth/peer.go
index a23449acd..fdd815293 100644
--- a/eth/peer.go
+++ b/eth/peer.go
@@ -213,9 +213,9 @@ func (ps *peerSet) Len() int {
return len(ps.peers)
}
-// BlockLackingPeers retrieves a list of peers that do not have a given block
-// in their set of known hashes.
-func (ps *peerSet) BlockLackingPeers(hash common.Hash) []*peer {
+// PeersWithoutBlock retrieves a list of peers that do not have a given block in
+// their set of known hashes.
+func (ps *peerSet) PeersWithoutBlock(hash common.Hash) []*peer {
ps.lock.RLock()
defer ps.lock.RUnlock()
@@ -228,9 +228,9 @@ func (ps *peerSet) BlockLackingPeers(hash common.Hash) []*peer {
return list
}
-// TxLackingPeers retrieves a list of peers that do not have a given transaction
+// PeersWithoutTx retrieves a list of peers that do not have a given transaction
// in their set of known hashes.
-func (ps *peerSet) TxLackingPeers(hash common.Hash) []*peer {
+func (ps *peerSet) PeersWithoutTx(hash common.Hash) []*peer {
ps.lock.RLock()
defer ps.lock.RUnlock()