From 6ec0a8a559b17957ce2456de5bb3c94e1ce36c6c Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Mon, 22 Mar 2021 18:15:16 +0200 Subject: [PATCH] Replace ECMH with Muhash (#1624) * Replace ECMH with MuHash * Update genesis hash * Update tests for new genesis --- .../dagtraversalmanager/window_test.go | 290 +++++++++--------- .../processes/pruningmanager/pruning_test.go | 6 +- domain/consensus/utils/multiset/multiset.go | 16 +- domain/dagconfig/genesis.go | 55 ++-- go.mod | 3 +- go.sum | 25 +- 6 files changed, 201 insertions(+), 194 deletions(-) diff --git a/domain/consensus/processes/dagtraversalmanager/window_test.go b/domain/consensus/processes/dagtraversalmanager/window_test.go index f2ec6de70..00866f434 100644 --- a/domain/consensus/processes/dagtraversalmanager/window_test.go +++ b/domain/consensus/processes/dagtraversalmanager/window_test.go @@ -20,78 +20,6 @@ func TestBlockWindow(t *testing.T) { expectedWindow []string }{ dagconfig.MainnetParams.Name: { - { - parents: []string{"A"}, - id: "B", - expectedWindow: []string{}, - }, - { - parents: []string{"B"}, - id: "C", - expectedWindow: []string{"B"}, - }, - { - parents: []string{"B"}, - id: "D", - expectedWindow: []string{"B"}, - }, - { - parents: []string{"C", "D"}, - id: "E", - expectedWindow: []string{"C", "D", "B"}, - }, - { - parents: []string{"C", "D"}, - id: "F", - expectedWindow: []string{"C", "D", "B"}, - }, - { - parents: []string{"A"}, - id: "G", - expectedWindow: []string{}, - }, - { - parents: []string{"G"}, - id: "H", - expectedWindow: []string{"G"}, - }, - { - parents: []string{"H", "F"}, - id: "I", - expectedWindow: []string{"F", "C", "H", "D", "G", "B"}, - }, - { - parents: []string{"I"}, - id: "J", - expectedWindow: []string{"I", "F", "C", "H", "D", "G", "B"}, - }, - { - parents: []string{"J"}, - id: "K", - expectedWindow: []string{"J", "I", "F", "C", "H", "D", "G", "B"}, - }, - { - parents: []string{"K"}, - id: "L", - expectedWindow: []string{"K", "J", "I", "F", "C", "H", "D", "G", "B"}, - }, - { - parents: []string{"L"}, - id: "M", - expectedWindow: []string{"L", "K", "J", "I", "F", "C", "H", "D", "G", "B"}, - }, - { - parents: []string{"M"}, - id: "N", - expectedWindow: []string{"M", "L", "K", "J", "I", "F", "C", "H", "D", "G"}, - }, - { - parents: []string{"N"}, - id: "O", - expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "C", "H", "D"}, - }, - }, - dagconfig.TestnetParams.Name: { { parents: []string{"A"}, id: "B", @@ -163,6 +91,78 @@ func TestBlockWindow(t *testing.T) { expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "D", "H", "C"}, }, }, + dagconfig.TestnetParams.Name: { + { + parents: []string{"A"}, + id: "B", + expectedWindow: []string{}, + }, + { + parents: []string{"B"}, + id: "C", + expectedWindow: []string{"B"}, + }, + { + parents: []string{"B"}, + id: "D", + expectedWindow: []string{"B"}, + }, + { + parents: []string{"C", "D"}, + id: "E", + expectedWindow: []string{"D", "C", "B"}, + }, + { + parents: []string{"C", "D"}, + id: "F", + expectedWindow: []string{"D", "C", "B"}, + }, + { + parents: []string{"A"}, + id: "G", + expectedWindow: []string{}, + }, + { + parents: []string{"G"}, + id: "H", + expectedWindow: []string{"G"}, + }, + { + parents: []string{"H", "F"}, + id: "I", + expectedWindow: []string{"F", "D", "H", "C", "G", "B"}, + }, + { + parents: []string{"I"}, + id: "J", + expectedWindow: []string{"I", "F", "D", "H", "C", "G", "B"}, + }, + { + parents: []string{"J"}, + id: "K", + expectedWindow: []string{"J", "I", "F", "D", "H", "C", "G", "B"}, + }, + { + parents: []string{"K"}, + id: "L", + expectedWindow: []string{"K", "J", "I", "F", "D", "H", "C", "G", "B"}, + }, + { + parents: []string{"L"}, + id: "M", + expectedWindow: []string{"L", "K", "J", "I", "F", "D", "H", "C", "G", "B"}, + }, + { + parents: []string{"M"}, + id: "N", + expectedWindow: []string{"M", "L", "K", "J", "I", "F", "D", "H", "C", "G"}, + }, + { + parents: []string{"N"}, + id: "O", + expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "D", "H", "C"}, + }, + }, dagconfig.DevnetParams.Name: { { parents: []string{"A"}, @@ -182,82 +182,10 @@ func TestBlockWindow(t *testing.T) { { parents: []string{"C", "D"}, id: "E", - expectedWindow: []string{"C", "D", "B"}, - }, - { - parents: []string{"C", "D"}, - id: "F", - expectedWindow: []string{"C", "D", "B"}, - }, - { - parents: []string{"A"}, - id: "G", - expectedWindow: []string{}, - }, - { - parents: []string{"G"}, - id: "H", - expectedWindow: []string{"G"}, - }, - { - parents: []string{"H", "F"}, - id: "I", - expectedWindow: []string{"F", "C", "D", "H", "G", "B"}, - }, - { - parents: []string{"I"}, - id: "J", - expectedWindow: []string{"I", "F", "C", "D", "H", "G", "B"}, - }, - { - parents: []string{"J"}, - id: "K", - expectedWindow: []string{"J", "I", "F", "C", "D", "H", "G", "B"}, - }, - { - parents: []string{"K"}, - id: "L", - expectedWindow: []string{"K", "J", "I", "F", "C", "D", "H", "G", "B"}, - }, - { - parents: []string{"L"}, - id: "M", - expectedWindow: []string{"L", "K", "J", "I", "F", "C", "D", "H", "G", "B"}, - }, - { - parents: []string{"M"}, - id: "N", - expectedWindow: []string{"M", "L", "K", "J", "I", "F", "C", "D", "H", "G"}, - }, - { - parents: []string{"N"}, - id: "O", - expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "C", "D", "H"}, - }, - }, - dagconfig.SimnetParams.Name: { - { - parents: []string{"A"}, - id: "B", - expectedWindow: []string{}, - }, - { - parents: []string{"B"}, - id: "C", - expectedWindow: []string{"B"}, - }, - { - parents: []string{"B"}, - id: "D", - expectedWindow: []string{"B"}, - }, - { - parents: []string{"D", "C"}, - id: "E", expectedWindow: []string{"D", "C", "B"}, }, { - parents: []string{"D", "C"}, + parents: []string{"C", "D"}, id: "F", expectedWindow: []string{"D", "C", "B"}, }, @@ -307,6 +235,78 @@ func TestBlockWindow(t *testing.T) { expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "H", "D", "C"}, }, }, + dagconfig.SimnetParams.Name: { + { + parents: []string{"A"}, + id: "B", + expectedWindow: []string{}, + }, + { + parents: []string{"B"}, + id: "C", + expectedWindow: []string{"B"}, + }, + { + parents: []string{"B"}, + id: "D", + expectedWindow: []string{"B"}, + }, + { + parents: []string{"D", "C"}, + id: "E", + expectedWindow: []string{"D", "C", "B"}, + }, + { + parents: []string{"D", "C"}, + id: "F", + expectedWindow: []string{"D", "C", "B"}, + }, + { + parents: []string{"A"}, + id: "G", + expectedWindow: []string{}, + }, + { + parents: []string{"G"}, + id: "H", + expectedWindow: []string{"G"}, + }, + { + parents: []string{"H", "F"}, + id: "I", + expectedWindow: []string{"F", "H", "D", "C", "B", "G"}, + }, + { + parents: []string{"I"}, + id: "J", + expectedWindow: []string{"I", "F", "H", "D", "C", "B", "G"}, + }, + { + parents: []string{"J"}, + id: "K", + expectedWindow: []string{"J", "I", "F", "H", "D", "C", "B", "G"}, + }, + { + parents: []string{"K"}, + id: "L", + expectedWindow: []string{"K", "J", "I", "F", "H", "D", "C", "B", "G"}, + }, + { + parents: []string{"L"}, + id: "M", + expectedWindow: []string{"L", "K", "J", "I", "F", "H", "D", "C", "B", "G"}, + }, + { + parents: []string{"M"}, + id: "N", + expectedWindow: []string{"M", "L", "K", "J", "I", "F", "H", "D", "C", "B"}, + }, + { + parents: []string{"N"}, + id: "O", + expectedWindow: []string{"N", "M", "L", "K", "J", "I", "F", "H", "D", "C"}, + }, + }, } testutils.ForAllNets(t, true, func(t *testing.T, params *dagconfig.Params) { params.K = 1 diff --git a/domain/consensus/processes/pruningmanager/pruning_test.go b/domain/consensus/processes/pruningmanager/pruning_test.go index 1ad100be4..fa3cbbca1 100644 --- a/domain/consensus/processes/pruningmanager/pruning_test.go +++ b/domain/consensus/processes/pruningmanager/pruning_test.go @@ -33,10 +33,10 @@ func TestPruning(t *testing.T) { dagconfig.SimnetParams.Name: "1582", }, "dag-for-test-pruning.json": { - dagconfig.MainnetParams.Name: "502", - dagconfig.TestnetParams.Name: "503", + dagconfig.MainnetParams.Name: "503", + dagconfig.TestnetParams.Name: "502", dagconfig.DevnetParams.Name: "503", - dagconfig.SimnetParams.Name: "503", + dagconfig.SimnetParams.Name: "502", }, } diff --git a/domain/consensus/utils/multiset/multiset.go b/domain/consensus/utils/multiset/multiset.go index 8ba1862aa..cae0ddb44 100644 --- a/domain/consensus/utils/multiset/multiset.go +++ b/domain/consensus/utils/multiset/multiset.go @@ -1,14 +1,14 @@ package multiset import ( - "github.com/kaspanet/go-secp256k1" + "github.com/kaspanet/go-muhash" "github.com/kaspanet/kaspad/domain/consensus/model" "github.com/kaspanet/kaspad/domain/consensus/model/externalapi" "github.com/pkg/errors" ) type multiset struct { - ms *secp256k1.MultiSet + ms *muhash.MuHash } func (m multiset) Add(data []byte) { @@ -21,8 +21,7 @@ func (m multiset) Remove(data []byte) { func (m multiset) Hash() *externalapi.DomainHash { finalizedHash := m.ms.Finalize() - finalizedHashAsByteArray := (*[secp256k1.HashSize]byte)(finalizedHash) - return externalapi.NewDomainHashFromByteArray(finalizedHashAsByteArray) + return externalapi.NewDomainHashFromByteArray(finalizedHash.AsArray()) } func (m multiset) Serialize() []byte { @@ -30,19 +29,18 @@ func (m multiset) Serialize() []byte { } func (m multiset) Clone() model.Multiset { - msClone := *m.ms - return &multiset{ms: &msClone} + return &multiset{ms: m.ms.Clone()} } // FromBytes deserializes the given bytes slice and returns a multiset. func FromBytes(multisetBytes []byte) (model.Multiset, error) { - serialized := &secp256k1.SerializedMultiSet{} + serialized := &muhash.SerializedMuHash{} if len(serialized) != len(multisetBytes) { return nil, errors.Errorf("mutliset bytes expected to be in length of %d but got %d", len(serialized), len(multisetBytes)) } copy(serialized[:], multisetBytes) - ms, err := secp256k1.DeserializeMultiSet(serialized) + ms, err := muhash.DeserializeMuHash(serialized) if err != nil { return nil, err } @@ -52,5 +50,5 @@ func FromBytes(multisetBytes []byte) (model.Multiset, error) { // New returns a new model.Multiset func New() model.Multiset { - return &multiset{ms: secp256k1.NewMultiset()} + return &multiset{ms: muhash.NewMuHash()} } diff --git a/domain/dagconfig/genesis.go b/domain/dagconfig/genesis.go index 900de90ab..279d3bcfa 100644 --- a/domain/dagconfig/genesis.go +++ b/domain/dagconfig/genesis.go @@ -5,6 +5,7 @@ package dagconfig import ( + "github.com/kaspanet/go-muhash" "github.com/kaspanet/kaspad/domain/consensus/model/externalapi" "github.com/kaspanet/kaspad/domain/consensus/utils/blockheader" "github.com/kaspanet/kaspad/domain/consensus/utils/subnetworks" @@ -28,10 +29,10 @@ var genesisCoinbaseTx = transactionhelper.NewSubnetworkTransaction(0, []*externa // genesisHash is the hash of the first block in the block DAG for the main // network (genesis block). var genesisHash = externalapi.NewDomainHashFromByteArray(&[externalapi.DomainHashSize]byte{ - 0x8b, 0xde, 0x80, 0xec, 0x12, 0x9a, 0x30, 0x3a, - 0xd5, 0x4a, 0x17, 0x13, 0xdf, 0x46, 0x16, 0x8d, - 0xdd, 0xca, 0x9f, 0x59, 0xc4, 0x4a, 0x37, 0x6a, - 0xc3, 0xc9, 0xc2, 0x90, 0xe9, 0x63, 0x23, 0x26, + 0x3b, 0x5e, 0xae, 0x38, 0x47, 0xc5, 0x9e, 0x06, + 0x8b, 0xc2, 0x9d, 0xe3, 0x26, 0xa2, 0x75, 0x10, + 0x35, 0xdd, 0xf8, 0x58, 0xe5, 0xb8, 0xcc, 0x83, + 0xd8, 0x9e, 0x07, 0xe0, 0x40, 0xdf, 0xb1, 0x96, }) // genesisMerkleRoot is the hash of the first transaction in the genesis block @@ -51,10 +52,10 @@ var genesisBlock = externalapi.DomainBlock{ []*externalapi.DomainHash{}, genesisMerkleRoot, &externalapi.DomainHash{}, - &externalapi.DomainHash{}, - 0x177a5f1dd32, + externalapi.NewDomainHashFromByteArray(muhash.EmptyMuHashHash.AsArray()), + 0x177bfd44981, 0x207fffff, - 0x4, + 0x0, ), Transactions: []*externalapi.DomainTransaction{genesisCoinbaseTx}, } @@ -78,10 +79,10 @@ var devnetGenesisCoinbaseTx = transactionhelper.NewSubnetworkTransaction(0, // devGenesisHash is the hash of the first block in the block DAG for the development // network (genesis block). var devnetGenesisHash = externalapi.NewDomainHashFromByteArray(&[externalapi.DomainHashSize]byte{ - 0x9b, 0x61, 0x0c, 0x49, 0x01, 0xb7, 0x44, 0x25, - 0x21, 0x6d, 0x75, 0x7b, 0x7b, 0xf2, 0x82, 0x07, - 0xb6, 0x4b, 0xa2, 0xf9, 0xe7, 0xeb, 0x77, 0x7c, - 0xb3, 0x66, 0x96, 0x4b, 0xad, 0xfe, 0x44, 0xa4, + 0x31, 0x4d, 0x29, 0xb4, 0x1e, 0x53, 0x50, 0x6a, + 0xbb, 0x7c, 0xfa, 0x59, 0x84, 0xf8, 0xe4, 0x84, + 0x66, 0x3e, 0x97, 0xe3, 0x4d, 0x56, 0xd0, 0x86, + 0xbc, 0x18, 0x69, 0x6b, 0xb2, 0x7b, 0x9c, 0x02, }) // devnetGenesisMerkleRoot is the hash of the first transaction in the genesis block @@ -101,10 +102,10 @@ var devnetGenesisBlock = externalapi.DomainBlock{ []*externalapi.DomainHash{}, devnetGenesisMerkleRoot, &externalapi.DomainHash{}, - &externalapi.DomainHash{}, + externalapi.NewDomainHashFromByteArray(muhash.EmptyMuHashHash.AsArray()), 0x11e9db49828, 0x1e7fffff, - 0x16ff1, + 0x10eff, ), Transactions: []*externalapi.DomainTransaction{devnetGenesisCoinbaseTx}, } @@ -127,10 +128,10 @@ var simnetGenesisCoinbaseTx = transactionhelper.NewSubnetworkTransaction(0, // simnetGenesisHash is the hash of the first block in the block DAG for // the simnet (genesis block). var simnetGenesisHash = externalapi.NewDomainHashFromByteArray(&[externalapi.DomainHashSize]byte{ - 0x74, 0xad, 0xf5, 0x43, 0x5d, 0x87, 0x42, 0xa7, - 0x37, 0xa7, 0x70, 0x8d, 0xaf, 0xea, 0x46, 0xe7, - 0x11, 0xcc, 0x31, 0x47, 0x96, 0xb4, 0xd0, 0x1c, - 0x2c, 0x75, 0x6c, 0x8a, 0xc1, 0x7f, 0x44, 0x00, + 0x5b, 0x2e, 0xbf, 0x45, 0x96, 0x12, 0x84, 0xf7, + 0x73, 0xb0, 0x88, 0x45, 0x5e, 0x9b, 0xb3, 0x80, + 0x9a, 0xcc, 0x92, 0x4c, 0x99, 0xcd, 0xdc, 0xd0, + 0x5f, 0xe2, 0x24, 0xa8, 0x9d, 0xd6, 0x59, 0x25, }) // simnetGenesisMerkleRoot is the hash of the first transaction in the genesis block @@ -150,10 +151,10 @@ var simnetGenesisBlock = externalapi.DomainBlock{ []*externalapi.DomainHash{}, simnetGenesisMerkleRoot, &externalapi.DomainHash{}, - &externalapi.DomainHash{}, - 0x177a5f1ddbf, + externalapi.NewDomainHashFromByteArray(muhash.EmptyMuHashHash.AsArray()), + 0x177bfd44a10, 0x207fffff, - 0x1, + 0x0, ), Transactions: []*externalapi.DomainTransaction{simnetGenesisCoinbaseTx}, } @@ -176,10 +177,10 @@ var testnetGenesisCoinbaseTx = transactionhelper.NewSubnetworkTransaction(0, // testnetGenesisHash is the hash of the first block in the block DAG for the test // network (genesis block). var testnetGenesisHash = externalapi.NewDomainHashFromByteArray(&[externalapi.DomainHashSize]byte{ - 0x79, 0x21, 0x07, 0xaf, 0xad, 0x07, 0xca, 0xd5, - 0xfc, 0x66, 0xd3, 0x84, 0x36, 0x54, 0x83, 0x3f, - 0x93, 0x9a, 0x6d, 0x29, 0x57, 0xb4, 0x0c, 0x76, - 0x71, 0x09, 0x3a, 0xf1, 0xea, 0xaa, 0x70, 0x81, + 0x8f, 0x83, 0xf5, 0x33, 0x77, 0xa4, 0x80, 0xa7, + 0x93, 0xf3, 0x17, 0xee, 0x3e, 0x8f, 0xf5, 0xaf, + 0x16, 0x6d, 0x87, 0x1d, 0x54, 0xfd, 0xe7, 0x79, + 0xa2, 0xab, 0x6f, 0xc3, 0x76, 0x60, 0xc3, 0x64, }) // testnetGenesisMerkleRoot is the hash of the first transaction in the genesis block @@ -199,10 +200,10 @@ var testnetGenesisBlock = externalapi.DomainBlock{ []*externalapi.DomainHash{}, testnetGenesisMerkleRoot, &externalapi.DomainHash{}, - &externalapi.DomainHash{}, - 0x177a5f1ddbf, + externalapi.NewDomainHashFromByteArray(muhash.EmptyMuHashHash.AsArray()), + 0x177bfd44a10, 0x1e7fffff, - 0x2bf, + 0x64d74, ), Transactions: []*externalapi.DomainTransaction{testnetGenesisCoinbaseTx}, } diff --git a/go.mod b/go.mod index 8cc86ed03..20646e4e5 100644 --- a/go.mod +++ b/go.mod @@ -9,10 +9,11 @@ require ( github.com/golang/protobuf v1.4.2 github.com/jessevdk/go-flags v1.4.0 github.com/jrick/logrotate v1.0.0 + github.com/kaspanet/go-muhash v0.0.4 github.com/kaspanet/go-secp256k1 v0.0.3 github.com/pkg/errors v0.9.1 github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d - golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 + golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670 google.golang.org/grpc v1.33.1 google.golang.org/protobuf v1.25.0 ) diff --git a/go.sum b/go.sum index 8df988a29..0fa0e3a54 100644 --- a/go.sum +++ b/go.sum @@ -9,11 +9,11 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dvyukov/go-fuzz v0.0.0-20210103155950-6a8e9d1f2415/go.mod h1:11Gm+ccJnvAhCNLlf5+cS9KjtbaD5I5zaZpFMsTHWTw= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= @@ -43,6 +43,10 @@ github.com/jessevdk/go-flags v1.4.0 h1:4IU2WS7AumrZ/40jfhf4QVDMsQwqA7VEHozFRrGAR github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jrick/logrotate v1.0.0 h1:lQ1bL/n9mBNeIXoTUoYRlK4dHuNJVofX9oWqBtPnSzI= github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= +github.com/kaspanet/go-muhash v0.0.2 h1:l1cw83YPulkAQFMSTxZKiQyU/kCI4t9dvABswetd9Fw= +github.com/kaspanet/go-muhash v0.0.2/go.mod h1:10bPW5mO1vNHPSejaAh9ZTtLZE16jzEvgaP7f3Q5s/8= +github.com/kaspanet/go-muhash v0.0.4 h1:CQrm1RTJpQy+h4ZFjj9qq42K5fmA5QTGifzb47p4qWk= +github.com/kaspanet/go-muhash v0.0.4/go.mod h1:10bPW5mO1vNHPSejaAh9ZTtLZE16jzEvgaP7f3Q5s/8= github.com/kaspanet/go-secp256k1 v0.0.3 h1:zvrKddgUm/sZ0capLUZVcn2tKoAvQaXytZYrOzLZWx4= github.com/kaspanet/go-secp256k1 v0.0.3/go.mod h1:cFbxhxKkxqHX5eIwUGKARkph19PehipDPJejWB+H0jM= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -56,8 +60,8 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d h1:gZZadD8H+fF+n9CmNhYL1Y0dJB+kLOmKd7FbPJLeGHs= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 h1:pLI5jrR7OSLijeIDcmRxNmw2api+jEfxLoykJVice/E= -golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670 h1:gzMM0EjIYiRmJI3+jBdFuoynZlpxa2JQZsolKu09BXo= +golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= @@ -67,8 +71,8 @@ golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 h1:0GoQqolDA55aaLxZyTzK/Y2ePZzZTUrRacwib7cNsYQ= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -76,10 +80,14 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 h1:EZ2mChiOa8udjfp6rRmswTbtZN/QzUQp4ptM4rnjHvc= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= @@ -108,7 +116,6 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=