aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereum.go b/ethereum.go
index 987cd2016..b83ceb12f 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -385,7 +385,7 @@ func (s *Ethereum) RemovePeer(p *Peer) {
})
}
-func (s *Ethereum) ReapDeadPeerHandler() {
+func (s *Ethereum) reapDeadPeerHandler() {
reapTimer := time.NewTicker(processReapingTimeout * time.Second)
for {
@@ -420,7 +420,7 @@ func (s *Ethereum) Start(seed bool) {
}
// Start the reaping processes
- go s.ReapDeadPeerHandler()
+ go s.reapDeadPeerHandler()
go s.update()
go s.filterLoop()