mirror of
https://github.com/btcsuite/btcd.git
synced 2025-03-26 01:29:30 +01:00
Fix test case bytes byteorder to little endian
This commit is contained in:
parent
cff30e1d23
commit
b48dc159ed
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ func TestFilterLoadWireErrors(t *testing.T) {
|
|||
baseFilterLoad := NewMsgFilterLoad(baseFilter, 10, 0, BloomUpdateNone)
|
||||
baseFilterLoadEncoded := append([]byte{0x04}, baseFilter...)
|
||||
baseFilterLoadEncoded = append(baseFilterLoadEncoded,
|
||||
0x00, 0x00, 0x00, 0x0a, // HashFuncs
|
||||
0x0a, 0x00, 0x00, 0x00, // HashFuncs
|
||||
0x00, 0x00, 0x00, 0x00, // Tweak
|
||||
0x00) // Flags
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue