Skip to content
Open
Show file tree
Hide file tree
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 rpcclient/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const (
ErrDust

// ErrMultiOpReturn is returned when the transactions are not standard
// - muiltiple OP_RETURNs.
// - multiple OP_RETURNs.
ErrMultiOpReturn

// ErrNonFinal is returned when spending a timelocked transaction that
Expand Down Expand Up @@ -451,7 +451,7 @@ var BtcdErrMap = map[string]error{
// Some nonstandard transactions - output too small.
"payment is dust": ErrDust,

// Some nonstandard transactions - muiltiple OP_RETURNs.
// Some nonstandard transactions - multiple OP_RETURNs.
"more than one transaction output in a nulldata script": ErrMultiOpReturn,

// A timelocked transaction.
Expand Down
2 changes: 1 addition & 1 deletion wire/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ func ReadPartialMessageWithEncodingN(r io.Reader, pver uint32,

// readMessageWithEncodingNInternal is used to deduplicate the code because we
// typically parse messages and headers all at once except in the case of a
// downgraded v2->v1 conncection.
// downgraded v2->v1 connection.
func readMessageWithEncodingNInternal(r io.Reader, pver uint32,
hdr *messageHeader, btcnet BitcoinNet, enc MessageEncoding,
totalBytes int) (int, Message, []byte, error) {
Expand Down
Loading