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 method names in interface comment #3092

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 client/asset/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ type Bonder interface {
// the first bond to ensure it succeeds, assuming balance was checked.
BondsFeeBuffer(feeRate uint64) uint64

// SetReserves sets the bond reserve amount for the wallet.
// SetBondReserves sets the bond reserve amount for the wallet.
SetBondReserves(reserves uint64)

// MakeBondTx authors a DEX time-locked fidelity bond transaction for the
Expand Down Expand Up @@ -876,7 +876,7 @@ type TokenMaster interface {
// AccountLocker is a wallet in which redemptions and refunds require a wallet
// to have available balance to pay fees.
type AccountLocker interface {
// ReserveNRedemption is used when preparing funding for an order that
// ReserveNRedemptions is used when preparing funding for an order that
// redeems to an account-based asset. The wallet will set aside the
// appropriate amount of funds so that we can redeem N swaps using the
// specified fee and asset version. It is an error to request funds >
Expand Down