diff --git a/wallet/wallet.go b/wallet/wallet.go index c8f76949..adf57339 100644 --- a/wallet/wallet.go +++ b/wallet/wallet.go @@ -30,6 +30,8 @@ const ( ) var ( + // ErrNotEnoughFunds is returned when there are not enough unspent outputs + // to fund a transaction. ErrNotEnoughFunds = errors.New("not enough funds") )