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 some function names in comment #3566

Merged
merged 1 commit into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion codec/codectest/codectest.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func RunAll(t *testing.T, ctor func() codecpkg.GeneralCodec) {
}
}

// RunAll runs all [MultipleTagsTests], constructing a new GeneralCodec for each.
// RunAllMultipleTags runs all [MultipleTagsTests], constructing a new GeneralCodec for each.
func RunAllMultipleTags(t *testing.T, ctor func() codecpkg.GeneralCodec) {
for _, tt := range MultipleTagsTests {
tt.Run(t, ctor())
Expand Down
2 changes: 1 addition & 1 deletion ids/idstest/aliases.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (tt *AliasTest) Run(t *testing.T, r ids.AliaserReader, w ids.AliaserWriter)
})
}

// RunAll runs all [AliasTests], constructing a new GeneralCodec for each.
// RunAllAlias runs all [AliasTests], constructing a new GeneralCodec for each.
func RunAllAlias(t *testing.T, ctor func() (ids.AliaserReader, ids.AliaserWriter)) {
for _, tt := range AliasTests {
r, w := ctor()
Expand Down
2 changes: 1 addition & 1 deletion wallet/chain/p/builder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ type Builder interface {
options ...common.Option,
) (*txs.ConvertSubnetToL1Tx, error)

// RegisterL1ValidatorTx adds a validator to an L1.
// NewRegisterL1ValidatorTx adds a validator to an L1.
//
// - [balance] that the validator should allocate to continuous fees
// - [proofOfPossession] is the BLS PoP for the key included in the Warp
Expand Down