Skip to content

Commit b36948a

Browse files
committed
chore: update
1 parent be543b8 commit b36948a

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

testutil/chain/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"mnemonic": "major danger this key only test please avoid main net use okay",
2020
"testchainChainID": 1337,
2121
"testchainPort": 8545,
22-
"testchainGasLimit": "15000000",
22+
"testchainGasLimit": "32000000",
2323
"testchainGasPrice": "20000000000",
2424
"etherBalance": "100000"
2525
}
26-
}
26+
}

testutil/testutil_test.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package testutil_test
22

33
import (
4-
"context"
54
"math/big"
65
"testing"
76

87
"github.com/0xsequence/ethkit/ethcoder"
9-
"github.com/0xsequence/ethkit/ethrpc"
108
"github.com/0xsequence/ethkit/go-ethereum/core/types"
119
"github.com/0xsequence/go-sequence/testutil"
1210
"github.com/stretchr/testify/assert"
@@ -36,17 +34,9 @@ func TestTestutil(t *testing.T) {
3634
sequenceContext, err := testChain.V1DeploySequenceContext()
3735
assert.NoError(t, err)
3836

39-
// Mine a new block before deploying V2
40-
_, err = testChain.Provider.Do(context.Background(), ethrpc.NewCall("evm_mine", nil))
41-
assert.NoError(t, err)
42-
4337
sequenceContextV2, err := testChain.V2DeploySequenceContext()
4438
assert.NoError(t, err)
4539

46-
// Mine a new block before deploying V3
47-
_, err = testChain.Provider.Do(context.Background(), ethrpc.NewCall("evm_mine", nil))
48-
assert.NoError(t, err)
49-
5040
sequenceContextV3, err := testChain.V3DeploySequenceContext()
5141
assert.NoError(t, err)
5242

0 commit comments

Comments
 (0)