go mod tidy and format.

This commit is contained in:
Raúl Kripalani
2023-02-12 21:53:29 +00:00
parent 493dabe8ce
commit 766eb76b1f
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -798,7 +798,7 @@ func (mp *MessagePool) VerifyMsgSig(m *types.SignedMessage) error {
if err != nil {
return xerrors.Errorf("failedl to get network version: %w", err)
}
if err := chain.AuthenticateMessage(m, m.Message.From, nv); err != nil {
return xerrors.Errorf("failed to validate signature: %w", err)
}
+1 -1
View File
@@ -1,10 +1,10 @@
package chain
import (
"github.com/filecoin-project/go-state-types/builtin"
"golang.org/x/xerrors"
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/go-state-types/builtin"
"github.com/filecoin-project/go-state-types/crypto"
"github.com/filecoin-project/go-state-types/network"
+1 -1
View File
@@ -12,7 +12,6 @@ import (
"sync/atomic"
"time"
"github.com/filecoin-project/lotus/chain/types/legacy"
"github.com/ipfs/go-cid"
cbor "github.com/ipfs/go-ipld-cbor"
cbg "github.com/whyrusleeping/cbor-gen"
@@ -36,6 +35,7 @@ import (
"github.com/filecoin-project/lotus/chain/actors/policy"
"github.com/filecoin-project/lotus/chain/state"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/chain/types/legacy"
"github.com/filecoin-project/lotus/lib/sigs"
"github.com/filecoin-project/lotus/node/bundle"
)
+1 -1
View File
@@ -133,6 +133,7 @@ require (
github.com/multiformats/go-multiaddr v0.7.0
github.com/multiformats/go-multiaddr-dns v0.3.1
github.com/multiformats/go-multibase v0.1.1
github.com/multiformats/go-multicodec v0.6.0
github.com/multiformats/go-multihash v0.2.1
github.com/multiformats/go-varint v0.0.6
github.com/open-rpc/meta-schema v0.0.0-20201029221707-1b72ef2ea333
@@ -294,7 +295,6 @@ require (
github.com/mr-tron/base58 v1.2.0 // indirect
github.com/multiformats/go-base36 v0.1.0 // indirect
github.com/multiformats/go-multiaddr-fmt v0.1.0 // indirect
github.com/multiformats/go-multicodec v0.6.0 // indirect
github.com/multiformats/go-multistream v0.3.3 // indirect
github.com/nikkolasg/hexjson v0.0.0-20181101101858-78e39397e00c // indirect
github.com/nkovacs/streamquote v1.0.0 // indirect
+1 -1
View File
@@ -10,7 +10,6 @@ import (
"sync"
"time"
"github.com/filecoin-project/go-state-types/network"
"github.com/google/uuid"
"github.com/ipfs/go-cid"
cbg "github.com/whyrusleeping/cbor-gen"
@@ -26,6 +25,7 @@ import (
"github.com/filecoin-project/go-state-types/builtin/v10/evm"
"github.com/filecoin-project/go-state-types/crypto"
"github.com/filecoin-project/go-state-types/exitcode"
"github.com/filecoin-project/go-state-types/network"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"