forked from TrueCloudLab/neoneo-go
5bf00db2c9
The logic here is that we'll have all binary encoding/decoding done via our io package, which simplifies error handling. This functionality doesn't belong to util, so it's moved. This also expands BufBinWriter with Reset() method to fit the needs of core package.
30 lines
927 B
Go
30 lines
927 B
Go
package transaction
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"testing"
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestEncodeDecodeMiner(t *testing.T) {
|
|
// transaction from mainnet a1f219dc6be4c35eca172e65e02d4591045220221b1543f1a4b67b9e9442c264
|
|
rawtx := "0000fcd30e22000001e72d286979ee6cb1b7e65dfddfb2e384100b8d148e7758de42e4168b71792c60c8000000000000001f72e68b4e39602912106d53b229378a082784b200"
|
|
tx := decodeTransaction(rawtx, t)
|
|
assert.Equal(t, MinerType, tx.Type)
|
|
assert.IsType(t, tx.Data, &MinerTX{})
|
|
assert.Equal(t, 0, int(tx.Version))
|
|
m := tx.Data.(*MinerTX)
|
|
assert.Equal(t, uint32(571397116), m.Nonce)
|
|
|
|
assert.Equal(t, "a1f219dc6be4c35eca172e65e02d4591045220221b1543f1a4b67b9e9442c264", tx.Hash().ReverseString())
|
|
|
|
// Encode
|
|
buf := io.NewBufBinWriter()
|
|
|
|
err := tx.EncodeBinary(buf.BinWriter)
|
|
assert.Equal(t, nil, err)
|
|
|
|
assert.Equal(t, rawtx, hex.EncodeToString(buf.Bytes()))
|
|
}
|