Skip to content

Commit

Permalink
fix formatting noun, found by vet
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Sep 1, 2020
1 parent 71bc446 commit 7ad965b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wallet/createtx.go
Original file line number Diff line number Diff line change
Expand Up @@ -1399,8 +1399,8 @@ func (w *Wallet) purchaseTickets(ctx context.Context, op errors.Op,
var ok bool
addrSubsidy, ok = a.(payments.StakeAddress)
if !ok {
err := errors.Errorf("address type %T is not " +
"usable as a ticket subsidy address")
err := errors.Errorf("address type %T is not "+
"usable as a ticket subsidy address", a)
return errors.E(errors.Invalid, err)
}

Expand Down

0 comments on commit 7ad965b

Please sign in to comment.