mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-06 09:34:13 +02:00
multi: fix some function names in interface comment
Signed-off-by: chuangjinglu <chuangjinglu@outlook.com>
This commit is contained in:
@@ -19,7 +19,7 @@ var EmptyOutPoint wire.OutPoint
|
||||
// construct a valid input within a sweeping transaction to sweep this
|
||||
// lingering UTXO.
|
||||
type Input interface {
|
||||
// Outpoint returns the reference to the output being spent, used to
|
||||
// OutPoint returns the reference to the output being spent, used to
|
||||
// construct the corresponding transaction input.
|
||||
OutPoint() wire.OutPoint
|
||||
|
||||
|
@@ -24,7 +24,7 @@ type MockInput struct {
|
||||
// Compile time assertion that MockInput implements Input.
|
||||
var _ Input = (*MockInput)(nil)
|
||||
|
||||
// Outpoint returns the reference to the output being spent, used to construct
|
||||
// OutPoint returns the reference to the output being spent, used to construct
|
||||
// the corresponding transaction input.
|
||||
func (m *MockInput) OutPoint() wire.OutPoint {
|
||||
args := m.Called()
|
||||
|
Reference in New Issue
Block a user