accessman+lnd: rename checkIncomingConnBanScore for clarity

This commit is contained in:
yyforyongyu
2025-06-17 22:31:18 +08:00
committed by Olaoluwa Osuntokun
parent c23c90ee9b
commit 107b74d81d
3 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ func assertInboundConnection(t *testing.T, a *accessMan,
remotePubSer := string(remotePub.SerializeCompressed())
isSlotAvailable, err := a.checkIncomingConnBanScore(remotePub)
isSlotAvailable, err := a.checkAcceptIncomingConn(remotePub)
require.NoError(t, err)
require.True(t, isSlotAvailable)
@@ -128,7 +128,7 @@ func TestAccessManRestrictedSlots(t *testing.T) {
peerKey4 := peerPriv4.PubKey()
// Follow the normal process of an incoming connection. We check if we
// can accommodate this peer in checkIncomingConnBanScore and then we
// can accommodate this peer in checkAcceptIncomingConn and then we
// assign its access permissions and then insert into the map.
assertInboundConnection(t, a, peerKey4, peerStatusRestricted)