From 1e513875e568280a9223d6a78dda6654c2d9d5ec Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 3 Sep 2017 16:20:54 -0700 Subject: [PATCH] discovery: rename service.go to gossiper.go --- discovery/{service.go => gossiper.go} | 2 +- discovery/{service_test.go => gossiper_test.go} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename discovery/{service.go => gossiper.go} (99%) rename discovery/{service_test.go => gossiper_test.go} (100%) diff --git a/discovery/service.go b/discovery/gossiper.go similarity index 99% rename from discovery/service.go rename to discovery/gossiper.go index 9ae6d3a3..a81afb02 100644 --- a/discovery/service.go +++ b/discovery/gossiper.go @@ -36,7 +36,7 @@ type syncRequest struct { } // feeUpdateRequest is a request that is sent to the server when a caller -// wishes to update the fees for a particular set of tchannels. New UpdateFee +// wishes to update the fees for a particular set of channels. New UpdateFee // messages will be crafted to be sent out during the next broadcast epoch and // the fee updates committed to the lower layer. type feeUpdateRequest struct { diff --git a/discovery/service_test.go b/discovery/gossiper_test.go similarity index 100% rename from discovery/service_test.go rename to discovery/gossiper_test.go