This commit is contained in:
Shrenuj Bansal 2022-09-13 16:52:47 -04:00
parent 4c4b10c617
commit a50a21b076
3 changed files with 12 additions and 4 deletions

View File

@ -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

View File

@ -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) {

View File

@ -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"