491acd4ca6
This commit is the first stage of several that are planned to convert the blockchain package into a concurrent safe package that will ultimately allow support for multi-peer download and concurrent chain processing. The goal is to update btcd proper after each step so it can take advantage of the enhancements as they are developed. In addition to the aforementioned benefit, this staged approach has been chosen since it is absolutely critical to maintain consensus. Separating the changes into several stages makes it easier for reviewers to logically follow what is happening and therefore helps prevent consensus bugs. Naturally there are significant automated tests to help prevent consensus issues as well. The main focus of this stage is to convert the blockchain package to use the new database interface and implement the chain-related functionality which it no longer handles. It also aims to improve efficiency in various areas by making use of the new database and chain capabilities. The following is an overview of the chain changes: - Update to use the new database interface - Add chain-related functionality that the old database used to handle - Main chain structure and state - Transaction spend tracking - Implement a new pruned unspent transaction output (utxo) set - Provides efficient direct access to the unspent transaction outputs - Uses a domain specific compression algorithm that understands the standard transaction scripts in order to significantly compress them - Removes reliance on the transaction index and paves the way toward eventually enabling block pruning - Modify the New function to accept a Config struct instead of inidividual parameters - Replace the old TxStore type with a new UtxoViewpoint type that makes use of the new pruned utxo set - Convert code to treat the new UtxoViewpoint as a rolling view that is used between connects and disconnects to improve efficiency - Make best chain state always set when the chain instance is created - Remove now unnecessary logic for dealing with unset best state - Make all exported functions concurrent safe - Currently using a single chain state lock as it provides a straight forward and easy to review path forward however this can be improved with more fine grained locking - Optimize various cases where full blocks were being loaded when only the header is needed to help reduce the I/O load - Add the ability for callers to get a snapshot of the current best chain stats in a concurrent safe fashion - Does not block callers while new blocks are being processed - Make error messages that reference transaction outputs consistently use <transaction hash>:<output index> - Introduce a new AssertError type an convert internal consistency checks to use it - Update tests and examples to reflect the changes - Add a full suite of tests to ensure correct functionality of the new code The following is an overview of the btcd changes: - Update to use the new database and chain interfaces - Temporarily remove all code related to the transaction index - Temporarily remove all code related to the address index - Convert all code that uses transaction stores to use the new utxo view - Rework several calls that required the block manager for safe concurrency to use the chain package directly now that it is concurrent safe - Change all calls to obtain the best hash to use the new best state snapshot capability from the chain package - Remove workaround for limits on fetching height ranges since the new database interface no longer imposes them - Correct the gettxout RPC handler to return the best chain hash as opposed the hash the txout was found in - Optimize various RPC handlers: - Change several of the RPC handlers to use the new chain snapshot capability to avoid needlessly loading data - Update several handlers to use new functionality to avoid accessing the block manager so they are able to return the data without blocking when the server is busy processing blocks - Update non-verbose getblock to avoid deserialization and serialization overhead - Update getblockheader to request the block height directly from chain and only load the header - Update getdifficulty to use the new cached data from chain - Update getmininginfo to use the new cached data from chain - Update non-verbose getrawtransaction to avoid deserialization and serialization overhead - Update gettxout to use the new utxo store versus loading full transactions using the transaction index The following is an overview of the utility changes: - Update addblock to use the new database and chain interfaces - Update findcheckpoint to use the new database and chain interfaces - Remove the dropafter utility which is no longer supported NOTE: The transaction index and address index will be reimplemented in another commit.
491 lines
16 KiB
Go
491 lines
16 KiB
Go
// Copyright (c) 2015-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package blockchain
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/hex"
|
|
"testing"
|
|
)
|
|
|
|
// hexToBytes converts the passed hex string into bytes and will panic if there
|
|
// is an error. This is only provided for the hard-coded constants so errors in
|
|
// the source code can be detected. It will only (and must only) be called with
|
|
// hard-coded values.
|
|
func hexToBytes(s string) []byte {
|
|
b, err := hex.DecodeString(s)
|
|
if err != nil {
|
|
panic("invalid hex in source file: " + s)
|
|
}
|
|
return b
|
|
}
|
|
|
|
// TestVLQ ensures the variable length quantity serialization, deserialization,
|
|
// and size calculation works as expected.
|
|
func TestVLQ(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
val uint64
|
|
serialized []byte
|
|
}{
|
|
{0, hexToBytes("00")},
|
|
{1, hexToBytes("01")},
|
|
{127, hexToBytes("7f")},
|
|
{128, hexToBytes("8000")},
|
|
{129, hexToBytes("8001")},
|
|
{255, hexToBytes("807f")},
|
|
{256, hexToBytes("8100")},
|
|
{16383, hexToBytes("fe7f")},
|
|
{16384, hexToBytes("ff00")},
|
|
{16511, hexToBytes("ff7f")}, // Max 2-byte value
|
|
{16512, hexToBytes("808000")},
|
|
{16513, hexToBytes("808001")},
|
|
{16639, hexToBytes("80807f")},
|
|
{32895, hexToBytes("80ff7f")},
|
|
{2113663, hexToBytes("ffff7f")}, // Max 3-byte value
|
|
{2113664, hexToBytes("80808000")},
|
|
{270549119, hexToBytes("ffffff7f")}, // Max 4-byte value
|
|
{270549120, hexToBytes("8080808000")},
|
|
{2147483647, hexToBytes("86fefefe7f")},
|
|
{2147483648, hexToBytes("86fefeff00")},
|
|
{4294967295, hexToBytes("8efefefe7f")}, // Max uint32, 5 bytes
|
|
// Max uint64, 10 bytes
|
|
{18446744073709551615, hexToBytes("80fefefefefefefefe7f")},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Ensure the function to calculate the serialized size without
|
|
// actually serializing the value is calculated properly.
|
|
gotSize := serializeSizeVLQ(test.val)
|
|
if gotSize != len(test.serialized) {
|
|
t.Errorf("serializeSizeVLQ: did not get expected size "+
|
|
"for %d - got %d, want %d", test.val, gotSize,
|
|
len(test.serialized))
|
|
continue
|
|
}
|
|
|
|
// Ensure the value serializes to the expected bytes.
|
|
gotBytes := make([]byte, gotSize)
|
|
gotBytesWritten := putVLQ(gotBytes, test.val)
|
|
if !bytes.Equal(gotBytes, test.serialized) {
|
|
t.Errorf("putVLQUnchecked: did not get expected bytes "+
|
|
"for %d - got %x, want %x", test.val, gotBytes,
|
|
test.serialized)
|
|
continue
|
|
}
|
|
if gotBytesWritten != len(test.serialized) {
|
|
t.Errorf("putVLQUnchecked: did not get expected number "+
|
|
"of bytes written for %d - got %d, want %d",
|
|
test.val, gotBytesWritten, len(test.serialized))
|
|
continue
|
|
}
|
|
|
|
// Ensure the serialized bytes deserialize to the expected
|
|
// value.
|
|
gotVal, gotBytesRead := deserializeVLQ(test.serialized)
|
|
if gotVal != test.val {
|
|
t.Errorf("deserializeVLQ: did not get expected value "+
|
|
"for %x - got %d, want %d", test.serialized,
|
|
gotVal, test.val)
|
|
continue
|
|
}
|
|
if gotBytesRead != len(test.serialized) {
|
|
t.Errorf("deserializeVLQ: did not get expected number "+
|
|
"of bytes read for %d - got %d, want %d",
|
|
test.serialized, gotBytesRead,
|
|
len(test.serialized))
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestScriptCompression ensures the domain-specific script compression and
|
|
// decompression works as expected.
|
|
func TestScriptCompression(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
name string
|
|
version int32
|
|
uncompressed []byte
|
|
compressed []byte
|
|
}{
|
|
{
|
|
name: "nil",
|
|
version: 1,
|
|
uncompressed: nil,
|
|
compressed: hexToBytes("06"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey-hash 1",
|
|
version: 1,
|
|
uncompressed: hexToBytes("76a9141018853670f9f3b0582c5b9ee8ce93764ac32b9388ac"),
|
|
compressed: hexToBytes("001018853670f9f3b0582c5b9ee8ce93764ac32b93"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey-hash 2",
|
|
version: 1,
|
|
uncompressed: hexToBytes("76a914e34cce70c86373273efcc54ce7d2a491bb4a0e8488ac"),
|
|
compressed: hexToBytes("00e34cce70c86373273efcc54ce7d2a491bb4a0e84"),
|
|
},
|
|
{
|
|
name: "pay-to-script-hash 1",
|
|
version: 1,
|
|
uncompressed: hexToBytes("a914da1745e9b549bd0bfa1a569971c77eba30cd5a4b87"),
|
|
compressed: hexToBytes("01da1745e9b549bd0bfa1a569971c77eba30cd5a4b"),
|
|
},
|
|
{
|
|
name: "pay-to-script-hash 2",
|
|
version: 1,
|
|
uncompressed: hexToBytes("a914f815b036d9bbbce5e9f2a00abd1bf3dc91e9551087"),
|
|
compressed: hexToBytes("01f815b036d9bbbce5e9f2a00abd1bf3dc91e95510"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey compressed 0x02",
|
|
version: 1,
|
|
uncompressed: hexToBytes("2102192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b4ac"),
|
|
compressed: hexToBytes("02192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b4"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey compressed 0x03",
|
|
version: 1,
|
|
uncompressed: hexToBytes("2103b0bd634234abbb1ba1e986e884185c61cf43e001f9137f23c2c409273eb16e65ac"),
|
|
compressed: hexToBytes("03b0bd634234abbb1ba1e986e884185c61cf43e001f9137f23c2c409273eb16e65"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey uncompressed 0x04 even",
|
|
version: 1,
|
|
uncompressed: hexToBytes("4104192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b40d45264838c0bd96852662ce6a847b197376830160c6d2eb5e6a4c44d33f453eac"),
|
|
compressed: hexToBytes("04192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b4"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey uncompressed 0x04 odd",
|
|
version: 1,
|
|
uncompressed: hexToBytes("410411db93e1dcdb8a016b49840f8c53bc1eb68a382e97b1482ecad7b148a6909a5cb2e0eaddfb84ccf9744464f82e160bfa9b8b64f9d4c03f999b8643f656b412a3ac"),
|
|
compressed: hexToBytes("0511db93e1dcdb8a016b49840f8c53bc1eb68a382e97b1482ecad7b148a6909a5c"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey invalid pubkey",
|
|
version: 1,
|
|
uncompressed: hexToBytes("3302aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaac"),
|
|
compressed: hexToBytes("293302aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaac"),
|
|
},
|
|
{
|
|
name: "null data",
|
|
version: 1,
|
|
uncompressed: hexToBytes("6a200102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"),
|
|
compressed: hexToBytes("286a200102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"),
|
|
},
|
|
{
|
|
name: "requires 2 size bytes - data push 200 bytes",
|
|
version: 1,
|
|
uncompressed: append(hexToBytes("4cc8"), bytes.Repeat([]byte{0x00}, 200)...),
|
|
// [0x80, 0x50] = 208 as a variable length quantity
|
|
// [0x4c, 0xc8] = OP_PUSHDATA1 200
|
|
compressed: append(hexToBytes("80504cc8"), bytes.Repeat([]byte{0x00}, 200)...),
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Ensure the function to calculate the serialized size without
|
|
// actually serializing the value is calculated properly.
|
|
gotSize := compressedScriptSize(test.uncompressed, test.version)
|
|
if gotSize != len(test.compressed) {
|
|
t.Errorf("compressedScriptSize (%s): did not get "+
|
|
"expected size - got %d, want %d", test.name,
|
|
gotSize, len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the script compresses to the expected bytes.
|
|
gotCompressed := make([]byte, gotSize)
|
|
gotBytesWritten := putCompressedScript(gotCompressed,
|
|
test.uncompressed, test.version)
|
|
if !bytes.Equal(gotCompressed, test.compressed) {
|
|
t.Errorf("putCompressedScript (%s): did not get "+
|
|
"expected bytes - got %x, want %x", test.name,
|
|
gotCompressed, test.compressed)
|
|
continue
|
|
}
|
|
if gotBytesWritten != len(test.compressed) {
|
|
t.Errorf("putCompressedScript (%s): did not get "+
|
|
"expected number of bytes written - got %d, "+
|
|
"want %d", test.name, gotBytesWritten,
|
|
len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the compressed script size is properly decoded from
|
|
// the compressed script.
|
|
gotDecodedSize := decodeCompressedScriptSize(test.compressed,
|
|
test.version)
|
|
if gotDecodedSize != len(test.compressed) {
|
|
t.Errorf("decodeCompressedScriptSize (%s): did not get "+
|
|
"expected size - got %d, want %d", test.name,
|
|
gotDecodedSize, len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the script decompresses to the expected bytes.
|
|
gotDecompressed := decompressScript(test.compressed, test.version)
|
|
if !bytes.Equal(gotDecompressed, test.uncompressed) {
|
|
t.Errorf("decompressScript (%s): did not get expected "+
|
|
"bytes - got %x, want %x", test.name,
|
|
gotDecompressed, test.uncompressed)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestScriptCompressionErrors ensures calling various functions related to
|
|
// script compression with incorrect data returns the expected results.
|
|
func TestScriptCompressionErrors(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// A nil script must result in a decoded size of 0.
|
|
if gotSize := decodeCompressedScriptSize(nil, 1); gotSize != 0 {
|
|
t.Fatalf("decodeCompressedScriptSize with nil script did not "+
|
|
"return 0 - got %d", gotSize)
|
|
}
|
|
|
|
// A nil script must result in a nil decompressed script.
|
|
if gotScript := decompressScript(nil, 1); gotScript != nil {
|
|
t.Fatalf("decompressScript with nil script did not return nil "+
|
|
"decompressed script - got %x", gotScript)
|
|
}
|
|
|
|
// A compressed script for a pay-to-pubkey (uncompressed) that results
|
|
// in an invalid pubkey must result in a nil decompressed script.
|
|
compressedScript := hexToBytes("04012d74d0cb94344c9569c2e77901573d8d" +
|
|
"7903c3ebec3a957724895dca52c6b4")
|
|
if gotScript := decompressScript(compressedScript, 1); gotScript != nil {
|
|
t.Fatalf("decompressScript with compressed pay-to-"+
|
|
"uncompressed-pubkey that is invalid did not return "+
|
|
"nil decompressed script - got %x", gotScript)
|
|
}
|
|
}
|
|
|
|
// TestAmountCompression ensures the domain-specific transaction output amount
|
|
// compression and decompression works as expected.
|
|
func TestAmountCompression(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
name string
|
|
uncompressed uint64
|
|
compressed uint64
|
|
}{
|
|
{
|
|
name: "0 BTC (sometimes used in nulldata)",
|
|
uncompressed: 0,
|
|
compressed: 0,
|
|
},
|
|
{
|
|
name: "546 Satoshi (current network dust value)",
|
|
uncompressed: 546,
|
|
compressed: 4911,
|
|
},
|
|
{
|
|
name: "0.00001 BTC (typical transaction fee)",
|
|
uncompressed: 1000,
|
|
compressed: 4,
|
|
},
|
|
{
|
|
name: "0.0001 BTC (typical transaction fee)",
|
|
uncompressed: 10000,
|
|
compressed: 5,
|
|
},
|
|
{
|
|
name: "0.12345678 BTC",
|
|
uncompressed: 12345678,
|
|
compressed: 111111101,
|
|
},
|
|
{
|
|
name: "0.5 BTC",
|
|
uncompressed: 50000000,
|
|
compressed: 48,
|
|
},
|
|
{
|
|
name: "1 BTC",
|
|
uncompressed: 100000000,
|
|
compressed: 9,
|
|
},
|
|
{
|
|
name: "5 BTC",
|
|
uncompressed: 500000000,
|
|
compressed: 49,
|
|
},
|
|
{
|
|
name: "21000000 BTC (max minted coins)",
|
|
uncompressed: 2100000000000000,
|
|
compressed: 21000000,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Ensure the amount compresses to the expected value.
|
|
gotCompressed := compressTxOutAmount(test.uncompressed)
|
|
if gotCompressed != test.compressed {
|
|
t.Errorf("compressTxOutAmount (%s): did not get "+
|
|
"expected value - got %d, want %d", test.name,
|
|
gotCompressed, test.compressed)
|
|
continue
|
|
}
|
|
|
|
// Ensure the value decompresses to the expected value.
|
|
gotDecompressed := decompressTxOutAmount(test.compressed)
|
|
if gotDecompressed != test.uncompressed {
|
|
t.Errorf("decompressTxOutAmount (%s): did not get "+
|
|
"expected value - got %d, want %d", test.name,
|
|
gotDecompressed, test.uncompressed)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestCompressedTxOut ensures the transaction output serialization and
|
|
// deserialization works as expected.
|
|
func TestCompressedTxOut(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
name string
|
|
amount uint64
|
|
compAmount uint64
|
|
pkScript []byte
|
|
compPkScript []byte
|
|
version int32
|
|
compressed []byte
|
|
}{
|
|
{
|
|
name: "nulldata with 0 BTC",
|
|
amount: 0,
|
|
compAmount: 0,
|
|
pkScript: hexToBytes("6a200102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"),
|
|
compPkScript: hexToBytes("286a200102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"),
|
|
version: 1,
|
|
compressed: hexToBytes("00286a200102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey-hash dust",
|
|
amount: 546,
|
|
compAmount: 4911,
|
|
pkScript: hexToBytes("76a9141018853670f9f3b0582c5b9ee8ce93764ac32b9388ac"),
|
|
compPkScript: hexToBytes("001018853670f9f3b0582c5b9ee8ce93764ac32b93"),
|
|
version: 1,
|
|
compressed: hexToBytes("a52f001018853670f9f3b0582c5b9ee8ce93764ac32b93"),
|
|
},
|
|
{
|
|
name: "pay-to-pubkey uncompressed 1 BTC",
|
|
amount: 100000000,
|
|
compAmount: 9,
|
|
pkScript: hexToBytes("4104192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b40d45264838c0bd96852662ce6a847b197376830160c6d2eb5e6a4c44d33f453eac"),
|
|
compPkScript: hexToBytes("04192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b4"),
|
|
version: 1,
|
|
compressed: hexToBytes("0904192d74d0cb94344c9569c2e77901573d8d7903c3ebec3a957724895dca52c6b4"),
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Ensure the function to calculate the serialized size without
|
|
// actually serializing the txout is calculated properly.
|
|
gotSize := compressedTxOutSize(test.amount, test.pkScript,
|
|
test.version, false)
|
|
if gotSize != len(test.compressed) {
|
|
t.Errorf("compressedTxOutSize (%s): did not get "+
|
|
"expected size - got %d, want %d", test.name,
|
|
gotSize, len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the txout compresses to the expected value.
|
|
gotCompressed := make([]byte, gotSize)
|
|
gotBytesWritten := putCompressedTxOut(gotCompressed,
|
|
test.amount, test.pkScript, test.version, false)
|
|
if !bytes.Equal(gotCompressed, test.compressed) {
|
|
t.Errorf("compressTxOut (%s): did not get expected "+
|
|
"bytes - got %x, want %x", test.name,
|
|
gotCompressed, test.compressed)
|
|
continue
|
|
}
|
|
if gotBytesWritten != len(test.compressed) {
|
|
t.Errorf("compressTxOut (%s): did not get expected "+
|
|
"number of bytes written - got %d, want %d",
|
|
test.name, gotBytesWritten,
|
|
len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the serialized bytes are decoded back to the expected
|
|
// compressed values.
|
|
gotAmount, gotScript, gotBytesRead, err := decodeCompressedTxOut(
|
|
test.compressed, test.version)
|
|
if err != nil {
|
|
t.Errorf("decodeCompressedTxOut (%s): unexpected "+
|
|
"error: %v", test.name, err)
|
|
continue
|
|
}
|
|
if gotAmount != test.compAmount {
|
|
t.Errorf("decodeCompressedTxOut (%s): did not get "+
|
|
"expected amount - got %d, want %d",
|
|
test.name, gotAmount, test.compAmount)
|
|
continue
|
|
}
|
|
if !bytes.Equal(gotScript, test.compPkScript) {
|
|
t.Errorf("decodeCompressedTxOut (%s): did not get "+
|
|
"expected script - got %x, want %x",
|
|
test.name, gotScript, test.compPkScript)
|
|
continue
|
|
}
|
|
if gotBytesRead != len(test.compressed) {
|
|
t.Errorf("decodeCompressedTxOut (%s): did not get "+
|
|
"expected number of bytes read - got %d, want %d",
|
|
test.name, gotBytesRead, len(test.compressed))
|
|
continue
|
|
}
|
|
|
|
// Ensure the compressed values decompress to the expected
|
|
// txout.
|
|
gotAmount = decompressTxOutAmount(gotAmount)
|
|
if gotAmount != test.amount {
|
|
t.Errorf("decompressTxOut (%s): did not get expected "+
|
|
"value - got %d, want %d", test.name, gotAmount,
|
|
test.amount)
|
|
continue
|
|
}
|
|
gotScript = decompressScript(gotScript, test.version)
|
|
if !bytes.Equal(gotScript, test.pkScript) {
|
|
t.Errorf("decompressTxOut (%s): did not get expected "+
|
|
"script - got %x, want %x", test.name,
|
|
gotScript, test.pkScript)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestTxOutCompressionErrors ensures calling various functions related to
|
|
// txout compression with incorrect data returns the expected results.
|
|
func TestTxOutCompressionErrors(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// A compressed txout with missing compressed script must error.
|
|
compressedTxOut := hexToBytes("00")
|
|
_, _, _, err := decodeCompressedTxOut(compressedTxOut, 1)
|
|
if !isDeserializeErr(err) {
|
|
t.Fatalf("decodeCompressedTxOut with missing compressed script "+
|
|
"did not return expected error type - got %T, want "+
|
|
"errDeserialize", err)
|
|
}
|
|
|
|
// A compressed txout with short compressed script must error.
|
|
compressedTxOut = hexToBytes("0010")
|
|
_, _, _, err = decodeCompressedTxOut(compressedTxOut, 1)
|
|
if !isDeserializeErr(err) {
|
|
t.Fatalf("decodeCompressedTxOut with short compressed script "+
|
|
"did not return expected error type - got %T, want "+
|
|
"errDeserialize", err)
|
|
}
|
|
}
|