From 16328895c5e9b807400ba5677a594eeccab01f48 Mon Sep 17 00:00:00 2001 From: seayyyy <163325936+seay404@users.noreply.github.com> Date: Wed, 1 May 2024 21:52:55 +0800 Subject: [PATCH] chore:fix export function name --- testing/path.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/path.go b/testing/path.go index cb1c968952a..7ee411ec88f 100644 --- a/testing/path.go +++ b/testing/path.go @@ -33,7 +33,7 @@ func NewPath(chainA, chainB *TestChain) *Path { } } -// NewPath constructs an endpoint for each chain using the default values +// NewPathWithFeeEnabled constructs an endpoint for each chain using the default values // for the endpoints. Each endpoint is updated to have a pointer to the // counterparty endpoint. It also enables fee on the path func NewPathWithFeeEnabled(chainA, chainB *TestChain) *Path { @@ -195,7 +195,7 @@ func (path *Path) CreateConnections() { } } -// CreateChannel constructs and executes channel handshake messages in order to create +// CreateChannels constructs and executes channel handshake messages in order to create // OPEN channels on chainA and chainB. The function expects the channels to be successfully // opened otherwise testing will fail. func (path *Path) CreateChannels() {