Skip to content
New issue

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

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

Already on GitHub? # to your account

chore: fix some comments #3213

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 wallet/chain/c/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type Wallet interface {
options ...common.Option,
) (*evm.Tx, error)

// IssueUnsignedTx signs and issues the unsigned tx.
// IssueUnsignedAtomicTx signs and issues the unsigned tx.
IssueUnsignedAtomicTx(
utx evm.UnsignedAtomicTx,
options ...common.Option,
Expand Down
3 changes: 2 additions & 1 deletion wallet/chain/p/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ type Wallet interface {
options ...common.Option,
) (*txs.Tx, error)

// IssueAddSubnetValidatorTx creates, signs, and issues a transaction that
// IssueRemoveSubnetValidatorTx creates, signs, and issues a transaction
// that removes a validator of a subnet.
// removes a validator of a subnet.
StephenButtolph marked this conversation as resolved.
Show resolved Hide resolved
//
// - [nodeID] is the validator being removed from [subnetID].
Expand Down
Loading