From a50a21b0766279231b6270f385d4f6ca592f45b3 Mon Sep 17 00:00:00 2001 From: Shrenuj Bansal Date: Tue, 13 Sep 2022 16:52:47 -0400 Subject: [PATCH] cleanup --- .circleci/config.yml | 5 +++++ itests/mpool_msg_uuid_test.go | 9 ++++++--- node/impl/full/mpool.go | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 53ac6bce0..e3bb77b9f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -924,6 +924,11 @@ workflows: suite: itest-mempool target: "./itests/mempool_test.go" + - test: + name: test-itest-mpool_msg_uuid + suite: itest-mpool_msg_uuid + target: "./itests/mpool_msg_uuid_test.go" + - test: name: test-itest-multisig suite: itest-multisig diff --git a/itests/mpool_msg_uuid_test.go b/itests/mpool_msg_uuid_test.go index 74e2f2a23..3eb30a6f6 100644 --- a/itests/mpool_msg_uuid_test.go +++ b/itests/mpool_msg_uuid_test.go @@ -2,16 +2,19 @@ package itests import ( "context" + "testing" + "time" + + "github.com/stretchr/testify/require" + "github.com/filecoin-project/go-state-types/abi" "github.com/filecoin-project/go-state-types/big" "github.com/filecoin-project/go-state-types/exitcode" + "github.com/filecoin-project/lotus/api" "github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/lotus/itests/kit" "github.com/filecoin-project/lotus/node/config" - "github.com/stretchr/testify/require" - "testing" - "time" ) func TestMsgWithoutUuidWithMaxFee(t *testing.T) { diff --git a/node/impl/full/mpool.go b/node/impl/full/mpool.go index a9f1ebda9..a2dbf0a86 100644 --- a/node/impl/full/mpool.go +++ b/node/impl/full/mpool.go @@ -3,8 +3,8 @@ package full import ( "context" "encoding/json" - "github.com/google/uuid" + "github.com/google/uuid" "github.com/ipfs/go-cid" "go.uber.org/fx" "golang.org/x/xerrors"