Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore:fix export function name #6247

Merged
merged 1 commit into from
May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions testing/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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() {
Expand Down
Loading