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
2 changes: 1 addition & 1 deletion wire/msgfilterload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
)

// TestFilterCLearLatest tests the MsgFilterLoad API against the latest protocol
// TestFilterLoadLatest tests the MsgFilterLoad API against the latest protocol
// version.
func TestFilterLoadLatest(t *testing.T) {
pver := ProtocolVersion
Expand Down
2 changes: 1 addition & 1 deletion wire/msgtx.go
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ func writeOutPointBuf(w io.Writer, pver uint32, version int32, op *OutPoint,
return err
}

// readScript reads a variable length byte array that represents a transaction
// readScriptBuf reads a variable length byte array that represents a transaction
// script. It is encoded as a varInt containing the length of the array
// followed by the bytes themselves. An error is returned if the length is
// greater than the passed maxAllowed parameter which helps protect against
Expand Down
2 changes: 1 addition & 1 deletion wire/msgtx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func TestTxHash(t *testing.T) {
}
}

// TestTxSha tests the ability to generate the wtxid, and txid of a transaction
// TestWTxSha tests the ability to generate the wtxid, and txid of a transaction
// with witness inputs accurately.
func TestWTxSha(t *testing.T) {
hashStrTxid := "0f167d1385a84d1518cfee208b653fc9163b605ccf1b75347e2850b3e2eb19f3"
Expand Down