File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ func (c channelMapKey) String() string {
246
246
247
247
// getChannelMap loads all channel edge policies from the database and stores
248
248
// them in a map.
249
- func ( c * KVStore ) getChannelMap (edges kvdb.RBucket ) (
249
+ func getChannelMap (edges kvdb.RBucket ) (
250
250
map [channelMapKey ]* models.ChannelEdgePolicy , error ) {
251
251
252
252
// Create a map to store all channel edge policies.
@@ -415,7 +415,7 @@ func (c *KVStore) ForEachChannel(cb func(*models.ChannelEdgeInfo,
415
415
416
416
// First, load all edges in memory indexed by node and channel
417
417
// id.
418
- channelMap , err := c . getChannelMap (edges )
418
+ channelMap , err := getChannelMap (edges )
419
419
if err != nil {
420
420
return err
421
421
}
@@ -479,7 +479,7 @@ func (c *KVStore) ForEachChannelCacheable(cb func(*models.CachedEdgeInfo,
479
479
480
480
// First, load all edges in memory indexed by node and channel
481
481
// id.
482
- channelMap , err := c . getChannelMap (edges )
482
+ channelMap , err := getChannelMap (edges )
483
483
if err != nil {
484
484
return err
485
485
}
You can’t perform that action at this time.
0 commit comments