diff --git a/consensus/bor/snapshot_test.go b/consensus/bor/snapshot_test.go index de576c18d6..982388d6d9 100644 --- a/consensus/bor/snapshot_test.go +++ b/consensus/bor/snapshot_test.go @@ -1,10 +1,10 @@ package bor import ( - "math/rand" + "crypto/rand" + "math/big" "sort" "testing" - "time" "github.com/stretchr/testify/require" "pgregory.net/rapid" @@ -28,8 +28,8 @@ func TestGetSignerSuccessionNumber_ProposerIsSigner(t *testing.T) { } // proposer is signer - signer := validatorSet.Proposer.Address - successionNumber, err := snap.GetSignerSuccessionNumber(signer) + signerTest := validatorSet.Proposer.Address + successionNumber, err := snap.GetSignerSuccessionNumber(signerTest) if err != nil { t.Fatalf("%s", err) } @@ -54,8 +54,8 @@ func TestGetSignerSuccessionNumber_SignerIndexIsLarger(t *testing.T) { } // choose a signer at an index greater than proposer index - signer := snap.ValidatorSet.Validators[signerIndex].Address - successionNumber, err := snap.GetSignerSuccessionNumber(signer) + signerTest := snap.ValidatorSet.Validators[signerIndex].Address + successionNumber, err := snap.GetSignerSuccessionNumber(signerTest) if err != nil { t.Fatalf("%s", err) } @@ -76,8 +76,8 @@ func TestGetSignerSuccessionNumber_SignerIndexIsSmaller(t *testing.T) { } // choose a signer at an index greater than proposer index - signer := snap.ValidatorSet.Validators[signerIndex].Address - successionNumber, err := snap.GetSignerSuccessionNumber(signer) + signerTest := snap.ValidatorSet.Validators[signerIndex].Address + successionNumber, err := snap.GetSignerSuccessionNumber(signerTest) if err != nil { t.Fatalf("%s", err) } @@ -95,13 +95,13 @@ func TestGetSignerSuccessionNumber_ProposerNotFound(t *testing.T) { require.Len(t, snap.ValidatorSet.Validators, numVals) - dummyProposerAddress := randomAddress() + dummyProposerAddress := randomAddress(toAddresses(validators)...) snap.ValidatorSet.Proposer = &valset.Validator{Address: dummyProposerAddress} // choose any signer - signer := snap.ValidatorSet.Validators[3].Address + signerTest := snap.ValidatorSet.Validators[3].Address - _, err := snap.GetSignerSuccessionNumber(signer) + _, err := snap.GetSignerSuccessionNumber(signerTest) require.NotNil(t, err) e, ok := err.(*UnauthorizedProposerError) @@ -116,26 +116,30 @@ func TestGetSignerSuccessionNumber_SignerNotFound(t *testing.T) { snap := Snapshot{ ValidatorSet: valset.NewValidatorSet(validators), } - dummySignerAddress := randomAddress() + + dummySignerAddress := randomAddress(toAddresses(validators)...) _, err := snap.GetSignerSuccessionNumber(dummySignerAddress) require.NotNil(t, err) + e, ok := err.(*UnauthorizedSignerError) require.True(t, ok) + require.Equal(t, dummySignerAddress.Bytes(), e.Signer) } // nolint: unparam func buildRandomValidatorSet(numVals int) []*valset.Validator { - rand.Seed(time.Now().Unix()) - validators := make([]*valset.Validator, numVals) valAddrs := randomAddresses(numVals) for i := 0; i < numVals; i++ { + power, _ := rand.Int(rand.Reader, big.NewInt(99)) + powerN := power.Int64() + 1 + validators[i] = &valset.Validator{ Address: valAddrs[i], // cannot process validators with voting power 0, hence +1 - VotingPower: int64(rand.Intn(99) + 1), + VotingPower: powerN, } } @@ -145,11 +149,27 @@ func buildRandomValidatorSet(numVals int) []*valset.Validator { return validators } -func randomAddress() common.Address { - bytes := make([]byte, 32) - rand.Read(bytes) +func randomAddress(exclude ...common.Address) common.Address { + excl := make(map[common.Address]struct{}, len(exclude)) - return common.BytesToAddress(bytes) + for _, addr := range exclude { + excl[addr] = struct{}{} + } + + bytes := make([]byte, 32) + + var addr common.Address + + for { + _, _ = rand.Read(bytes) + addr = common.BytesToAddress(bytes) + + if _, ok := excl[addr]; ok { + continue + } + + return addr + } } func randomAddresses(n int) []common.Address { @@ -168,7 +188,7 @@ func randomAddresses(n int) []common.Address { bytes := make([]byte, 32) for { - rand.Read(bytes) + _, _ = rand.Read(bytes) addr = common.BytesToAddress(bytes) @@ -189,7 +209,7 @@ func TestRandomAddresses(t *testing.T) { t.Parallel() rapid.Check(t, func(t *rapid.T) { - length := rapid.IntMax(100).Draw(t, "length").(int) + length := rapid.IntMax(300).Draw(t, "length").(int) addrs := randomAddresses(length) addressSet := unique.New(addrs) @@ -199,3 +219,13 @@ func TestRandomAddresses(t *testing.T) { } }) } + +func toAddresses(vals []*valset.Validator) []common.Address { + addrs := make([]common.Address, len(vals)) + + for i, val := range vals { + addrs[i] = val.Address + } + + return addrs +} diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151330-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151330-26278.fail deleted file mode 100644 index 94ce1546f8..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151330-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:13:30 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 15:13:30 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000492108), (*core.testTx)(0x14000492138)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:13:30 current_total2in_batch0removed681emptyBlocks0blockGasLeft40767pending0locals1locals+pending49.792µs -# TestSmallTxPool/thread_0 2022/08/23 15:13:30 block0pending2queued0elapsed49.792µs -# TestSmallTxPool/thread_0 2022/08/23 15:13:31 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.292µs -# TestSmallTxPool/thread_0 2022/08/23 15:13:31 block1pending0queued1elapsed2.292µs -# TestSmallTxPool/thread_0 2022/08/23 15:13:33 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:13:33 Case params: totalAccs = 1; totalTxs = 2; mean 32505, stdev 16246, 21017-43993); queued mean 21017, stdev 0, 21017-21017); -# -# -v0.4.8#11029736394225352711 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x1f2636f2f4272a -0x1eb19696411e3a -0x0 -0x1a9a08d47dda23 -0x34b -0x17862cfa81ddf3 -0x59d1 -0x6c6149a0e3fea -0x354f9d0ccc85 -0x0 -0x13a7039f9f51e8 -0x55 -0xd533863398551 -0x11 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151928-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151928-26429.fail deleted file mode 100644 index 9a63d1ae84..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823151928-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:19:28 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 15:19:28 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400030c330), (*core.testTx)(0x1400030c360)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:19:28 current_total2in_batch0removed1419emptyBlocks0blockGasLeft13692pending0locals1locals+pending58.958µs -# TestSmallTxPool/thread_0 2022/08/23 15:19:28 block0pending2queued0elapsed58.958µs -# TestSmallTxPool/thread_0 2022/08/23 15:19:29 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.709µs -# TestSmallTxPool/thread_0 2022/08/23 15:19:29 block1pending0queued1elapsed1.709µs -# TestSmallTxPool/thread_0 2022/08/23 15:19:32 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:19:32 Case params: totalAccs = 1; totalTxs = 2; mean 21120, stdev 16, 21109-21132); queued mean 21109, stdev 0, 21109-21109); -# -# -v0.4.8#9786661773728808964 -0x0 -0x0 -0x0 -0x67dc9cec78e13 -0x1bf4422bb39e5f -0x1 -0x1ea85a9a31648c -0x15a464694e57a5 -0x0 -0x1e9abc9f2d4c22 -0x197 -0x13b4908913f2be -0x84 -0x698224e1fdf58 -0x17a1aa232e63bc -0x0 -0x198c53867741ca -0xa1 -0xe5eb9d729f520 -0x6d \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823152444-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823152444-26736.fail deleted file mode 100644 index e7d4e37a32..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823152444-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:24:44 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 15:24:44 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140000e20d8), (*core.testTx)(0x140000e2108)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:24:44 current_total2in_batch0removed1372emptyBlocks0blockGasLeft12196pending0locals1locals+pending137.209µs -# TestSmallTxPool/thread_0 2022/08/23 15:24:44 block0pending2queued0elapsed137.209µs -# TestSmallTxPool/thread_0 2022/08/23 15:24:45 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.75µs -# TestSmallTxPool/thread_0 2022/08/23 15:24:45 block1pending0queued1elapsed2.75µs -# TestSmallTxPool/thread_0 2022/08/23 15:24:48 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:24:48 Case params: totalAccs = 1; totalTxs = 2; mean 28968, stdev 10057, 21857-36080); queued mean 36080, stdev 0, 36080-36080); -# -# -v0.4.8#3215567110285557761 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x1b2c25eff2c22f -0x1feb1e4a05c9d4 -0xffffffffffffffff -0x1414771bc67fb3 -0x52 -0x127640f42d5fc0 -0x359 -0x6ea0a16444b3e -0x1c44165efb736b -0x0 -0x10c19b853a39f -0x1 -0x16ece298caa22e -0x3ae8 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153150-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153150-26804.fail deleted file mode 100644 index 0a832ab9b6..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153150-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:31:50 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 15:31:50 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000284d98), (*core.testTx)(0x14000284dc8)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:31:50 current_total2in_batch0removed2emptyBlocks0blockGasLeft4212242pending0locals1locals+pending24.083µs -# TestSmallTxPool/thread_0 2022/08/23 15:31:50 block0pending2queued0elapsed24.083µs -# TestSmallTxPool/thread_0 2022/08/23 15:31:51 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending19.541µs -# TestSmallTxPool/thread_0 2022/08/23 15:31:51 block1pending0queued1elapsed19.541µs -# TestSmallTxPool/thread_0 2022/08/23 15:31:54 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:31:54 Case params: totalAccs = 1; totalTxs = 2; mean 6458035, stdev 9101657, 22192-12893879); queued mean 22192, stdev 0, 22192-22192); -# -# -v0.4.8#10709562971903754262 -0x0 -0x0 -0x0 -0x17e0c3279c99ab -0xb6f41a4a6b3a4 -0x1 -0x87842817eb8ff -0x1451c92f7668a0 -0x0 -0x121043590cea35 -0x9c -0x1c71051dfee8ac -0xc46caf -0xa55ff6fb6a68c -0x1501d124bb34bf -0x0 -0x16344309605962 -0x1dc -0x143f19bff3d120 -0x4a8 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153538-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153538-26949.fail deleted file mode 100644 index 3645ca10ce..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823153538-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:35:38 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_0 2022/08/23 15:35:38 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000ecf0), (*core.testTx)(0x1400000ed20)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:35:38 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending80.083µs -# TestSmallTxPool/thread_0 2022/08/23 15:35:38 block0pending2queued0elapsed80.083µs -# TestSmallTxPool/thread_0 2022/08/23 15:35:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending792ns -# TestSmallTxPool/thread_0 2022/08/23 15:35:39 block1pending0queued1elapsed792ns -# TestSmallTxPool/thread_0 2022/08/23 15:35:50 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:35:50 Case params: totalAccs = 2; totalTxs = 2; mean 21005, stdev 5, 21001-21009); queued mean 21009, stdev 0, 21009-21009); -# -# -v0.4.8#13590275224699404290 -0x0 -0xd2a17242499b0 -0x1 -0xbc8a024b6343f -0x18dd5253af2dc3 -0x1 -0x169f385833d74a -0x12a688b34980e3 -0x0 -0x167b53470152c -0x0 -0x559e528dfab8d -0x1 -0x18e2016ee66460 -0x338f1089da1b4 -0x0 -0x115e9e024d79b2 -0x29 -0x8088bc72eaa59 -0x9 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154120-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154120-27072.fail deleted file mode 100644 index e5b9a7989c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154120-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:41:20 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_0 2022/08/23 15:41:20 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e228), (*core.testTx)(0x1400000e258)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:41:20 current_total2in_batch0removed2emptyBlocks0blockGasLeft4280620pending0locals1locals+pending10.917µs -# TestSmallTxPool/thread_0 2022/08/23 15:41:20 block0pending2queued0elapsed10.917µs -# TestSmallTxPool/thread_0 2022/08/23 15:41:21 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending7.125µs -# TestSmallTxPool/thread_0 2022/08/23 15:41:21 block1pending0queued1elapsed7.125µs -# TestSmallTxPool/thread_0 2022/08/23 15:41:32 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:41:32 Case params: totalAccs = 2; totalTxs = 2; mean 6440512, stdev 9078088, 21334-12859690); queued mean 21334, stdev 0, 21334-21334); -# -# -v0.4.8#13827906007021387778 -0x0 -0x13c161ea2c5f10 -0x1 -0x5c321f259b270 -0x8a4dc328bbd30 -0x1 -0x171dea27d41efa -0x2ea0352069717 -0x0 -0x1226a321f64da4 -0xd1 -0x1d3ec3221a46c4 -0xc3e722 -0x11b2bdae727c2d -0x66a7913ad4c48 -0x0 -0x684971f31e928 -0x1 -0x13ae283311efe6 -0x14e \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154450-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154450-27147.fail deleted file mode 100644 index 4c12403ebe..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823154450-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 15:44:50 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 15:44:50 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400077eb28), (*core.testTx)(0x1400077eb58)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 15:44:50 current_total2in_batch0removed1428emptyBlocks0blockGasLeft7716pending0locals1locals+pending215.625µs -# TestSmallTxPool/thread_0 2022/08/23 15:44:50 block0pending2queued0elapsed215.625µs -# TestSmallTxPool/thread_0 2022/08/23 15:44:51 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending21.625µs -# TestSmallTxPool/thread_0 2022/08/23 15:44:51 block1pending0queued1elapsed21.625µs -# TestSmallTxPool/thread_0 2022/08/23 15:45:02 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 15:45:02 Case params: totalAccs = 1; totalTxs = 2; mean 21005, stdev 2, 21003-21007); queued mean 21007, stdev 0, 21007-21007); -# -# -v0.4.8#7017342383972941826 -0x0 -0xbbbccdb397a57 -0x0 -0xf01dd5f7ae508 -0x12268ab42e6b8e -0x1 -0xbd975f5492e8c -0x113d0f132ef348 -0x0 -0x5fed4787ef891 -0x3 -0x33575339aaeb2 -0x3 -0xad43c78a9ecf2 -0x16baafceb1d6b -0x0 -0x15488c8367666b -0x282 -0x9980fb2895ffb -0x7 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823191059-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823191059-29281.fail deleted file mode 100644 index 74802b0efe..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220823191059-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e1c8), (*core.testTx)(0x1400000e1f8)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 current_total2in_batch0removed16emptyBlocks0blockGasLeft429312pending0locals1locals+pending26.75µs -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 block0pending2queued0elapsed26.75µs -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.625µs -# TestSmallTxPool/thread_0 2022/08/23 19:10:59 block1pending0queued1elapsed1.625µs -# TestSmallTxPool/thread_0 2022/08/23 19:11:19 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/23 19:11:19 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 934592, stdev 1291991, 21016-1848168); queued mean 21016, stdev 0, 21016-21016); -# -# -v0.4.8#14400060453315149826 -0x1da97f11b17d22 -0xe049e271c42d4 -0x0 -0x191727a4e4c060 -0xe169141bcbc4a -0x1 -0xf5c4ae03fbf73 -0x1cfbdf4ce9a2cb -0x0 -0x3d888f9cea9a5 -0x3 -0x1ba7fc195e78db -0x1be160 -0x11bd23add00391 -0x156cb42ad682b9 -0x0 -0x6eaa2424cc342 -0x4 -0xcfa77da5c5c8f -0x10 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220824135022-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220824135022-34401.fail deleted file mode 100644 index 4ac3495ee5..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_0/TestSmallTxPool_thread_0-20220824135022-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000292108), (*core.testTx)(0x14000292138)}, totalTxs:2} -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 current_total2in_batch0removed1427emptyBlocks0blockGasLeft13022pending0locals1locals+pending132.417µs -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 block0pending2queued0elapsed132.417µs -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.875µs -# TestSmallTxPool/thread_0 2022/08/24 13:50:22 block1pending0queued1elapsed1.875µs -# TestSmallTxPool/thread_0 2022/08/24 13:50:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_0 2022/08/24 13:50:42 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21007, stdev 9, 21001-21014); queued mean 21001, stdev 0, 21001-21001); -# -# -v0.4.8#974752723431850006 -0x14b2a7d7e2408a -0x1364be1a25bf21 -0x0 -0x1b620383c208d7 -0x9461cde08694e -0x1 -0x2aa7eebef7fcb -0x49d3ee5298f3c -0x0 -0x1cff585444d134 -0x245 -0x8ce24f34a5308 -0xe -0x41dd341771c08 -0x547b5f47dc931 -0x0 -0x6040582af4d8c -0x0 -0x7d25b0875a075 -0x1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151323-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151323-26278.fail deleted file mode 100644 index f19d25288c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151323-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:13:23 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:13:23 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400080a2d0), (*core.testTx)(0x1400080a300)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:13:23 current_total2in_batch0removed1427emptyBlocks0blockGasLeft7314pending0locals1locals+pending90.292µs -# TestSmallTxPool/thread_1 2022/08/23 15:13:23 block0pending2queued0elapsed90.292µs -# TestSmallTxPool/thread_1 2022/08/23 15:13:24 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.125µs -# TestSmallTxPool/thread_1 2022/08/23 15:13:24 block1pending0queued1elapsed1.125µs -# TestSmallTxPool/thread_1 2022/08/23 15:13:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:13:26 Case params: totalAccs = 1; totalTxs = 2; mean 21020, stdev 2, 21018-21022); queued mean 21022, stdev 0, 21022-21022); -# -# -v0.4.8#11031974072186568713 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x340ea5bc881c -0xede9d2ccbcc0e -0x0 -0x8c4bfb32cd2e1 -0x6 -0x10e704368e14ac -0x12 -0x1de5cc63f09ac0 -0x106977c8fdd59d -0x0 -0xa5a15c0a7551f -0x1 -0x9f5fc1605085d -0x16 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151922-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151922-26429.fail deleted file mode 100644 index 2271dd3476..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823151922-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:19:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:19:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140003d20f0), (*core.testTx)(0x140003d2120)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:19:22 current_total2in_batch0removed305emptyBlocks0blockGasLeft23075pending0locals1locals+pending14.459µs -# TestSmallTxPool/thread_1 2022/08/23 15:19:22 block0pending2queued0elapsed14.459µs -# TestSmallTxPool/thread_1 2022/08/23 15:19:23 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending583ns -# TestSmallTxPool/thread_1 2022/08/23 15:19:23 block1pending0queued1elapsed583ns -# TestSmallTxPool/thread_1 2022/08/23 15:19:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:19:26 Case params: totalAccs = 1; totalTxs = 2; mean 1897853, stdev 2544973, 98285-3697421); queued mean 3697421, stdev 0, 3697421-3697421); -# -# -v0.4.8#9790973920893992969 -0x0 -0x0 -0x0 -0x0 -0x2dd249d3645dd -0x1 -0x10a1d46be478ff -0x123cb694eaae5d -0x0 -0x1857c4c20b6cf2 -0x40 -0x19bb74c954d6d0 -0x12de5 -0x2e6ad310e94e0 -0x4eaa8ac28ac89 -0x0 -0x869c6ef25c94c -0x3 -0x1b74fc7efc27c0 -0x381905 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823152442-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823152442-26736.fail deleted file mode 100644 index 904f87911d..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823152442-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:24:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:24:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000ab82a0), (*core.testTx)(0x14000ab82d0)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:24:42 current_total2in_batch0removed121emptyBlocks0blockGasLeft136958pending0locals1locals+pending33.208µs -# TestSmallTxPool/thread_1 2022/08/23 15:24:42 block0pending2queued0elapsed33.208µs -# TestSmallTxPool/thread_1 2022/08/23 15:24:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending23.542µs -# TestSmallTxPool/thread_1 2022/08/23 15:24:43 block1pending0queued1elapsed23.542µs -# TestSmallTxPool/thread_1 2022/08/23 15:24:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:24:46 Case params: totalAccs = 1; totalTxs = 2; mean 133911, stdev 159651, 21020-246802); queued mean 21020, stdev 0, 21020-21020); -# -# -v0.4.8#3220562157250805769 -0x0 -0x0 -0x0 -0x0 -0xec204142183b8 -0x1 -0x520290d37649c -0x1c52fe050f7cda -0x0 -0x9eedba0ba0a1b -0x3 -0x1ae703ec9578a3 -0x3720a -0x18a5c8f65198c3 -0x287c0826f41fd -0x0 -0x5d906606d80e -0x0 -0x9fe0b2ed36580 -0x14 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153132-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153132-26804.fail deleted file mode 100644 index 6ca24737eb..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153132-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:31:32 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:31:32 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000322f90), (*core.testTx)(0x14000322fc0)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:31:32 current_total2in_batch0removed7emptyBlocks0blockGasLeft861688pending0locals1locals+pending97.292µs -# TestSmallTxPool/thread_1 2022/08/23 15:31:32 block0pending2queued0elapsed97.292µs -# TestSmallTxPool/thread_1 2022/08/23 15:31:33 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.709µs -# TestSmallTxPool/thread_1 2022/08/23 15:31:33 block1pending0queued1elapsed2.709µs -# TestSmallTxPool/thread_1 2022/08/23 15:31:36 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:31:36 Case params: totalAccs = 1; totalTxs = 2; mean 2092309, stdev 2927855, 22003-4162616); queued mean 22003, stdev 0, 22003-22003); -# -# -v0.4.8#10710653893596938249 -0x0 -0x0 -0x0 -0x0 -0x66311e3789fc1 -0x1 -0xecff5ea5adabc -0x1d6c0a39f1f128 -0x0 -0xfb51d55187e73 -0x30 -0x1bb6ee7a61a496 -0x3f3230 -0x4511a67bb0d16 -0x1ea4f443ba00c3 -0x0 -0x976de73fcc564 -0xd -0x13252e46b26a94 -0x3eb \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153538-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153538-26949.fail deleted file mode 100644 index 20c06789f9..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823153538-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:35:38 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:35:38 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000434450), (*core.testTx)(0x14000434480)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:35:38 current_total2in_batch0removed1397emptyBlocks0blockGasLeft3616pending0locals1locals+pending73.333µs -# TestSmallTxPool/thread_1 2022/08/23 15:35:38 block0pending2queued0elapsed73.333µs -# TestSmallTxPool/thread_1 2022/08/23 15:35:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending791ns -# TestSmallTxPool/thread_1 2022/08/23 15:35:39 block1pending0queued1elapsed791ns -# TestSmallTxPool/thread_1 2022/08/23 15:35:50 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:35:50 Case params: totalAccs = 1; totalTxs = 2; mean 24538, stdev 4335, 21472-27604); queued mean 27604, stdev 0, 27604-27604); -# -# -v0.4.8#13594484292649484294 -0x0 -0x33d81b4e61ccb -0x0 -0x13d94ec34a6a0 -0xc3f0d3a884b9c -0x1 -0x1cd4e0fe57b78a -0x27ccab598995d -0x0 -0x17dc4a6feed56f -0x61 -0x12f659ced99051 -0x1d8 -0x38997e5c06bf2 -0x83e6e47cda8ad -0x0 -0x18f4121555d2b0 -0x2f3 -0x1723e9d78b0a02 -0x19cc \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154142-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154142-27072.fail deleted file mode 100644 index 2eb492f0d7..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154142-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:41:42 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_1 2022/08/23 15:41:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140001bef30), (*core.testTx)(0x140001bef60)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:41:42 current_total2in_batch0removed1406emptyBlocks0blockGasLeft178pending0locals1locals+pending242.875µs -# TestSmallTxPool/thread_1 2022/08/23 15:41:42 block0pending2queued0elapsed242.875µs -# TestSmallTxPool/thread_1 2022/08/23 15:41:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.791µs -# TestSmallTxPool/thread_1 2022/08/23 15:41:43 block1pending0queued1elapsed2.791µs -# TestSmallTxPool/thread_1 2022/08/23 15:41:54 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:41:54 Case params: totalAccs = 2; totalTxs = 2; mean 21169, stdev 236, 21002-21337); queued mean 21002, stdev 0, 21002-21002); -# -# -v0.4.8#13829336231130955785 -0x0 -0x1ab0d5a355c4fa -0x1 -0x3d3ac91081d48 -0x14ebd755ac043a -0x1 -0x1fa70360c5584a -0xd869ae2b68e87 -0x0 -0x10918ae633d4c5 -0x7 -0x14c7652b59695d -0x151 -0x1bc28156c12803 -0x12998fb4886bcc -0x0 -0x1837075a1c52f7 -0x1a9 -0x61a84b35b83bf -0x2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154451-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154451-27147.fail deleted file mode 100644 index 0d6cc64496..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823154451-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 15:44:51 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_1 2022/08/23 15:44:51 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400077eea0), (*core.testTx)(0x1400077eed0)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 15:44:51 current_total2in_batch0removed1426emptyBlocks0blockGasLeft16924pending0locals1locals+pending119.167µs -# TestSmallTxPool/thread_1 2022/08/23 15:44:51 block0pending2queued0elapsed119.167µs -# TestSmallTxPool/thread_1 2022/08/23 15:44:52 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending18.709µs -# TestSmallTxPool/thread_1 2022/08/23 15:44:52 block1pending0queued1elapsed18.709µs -# TestSmallTxPool/thread_1 2022/08/23 15:45:03 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 15:45:03 Case params: totalAccs = 1; totalTxs = 2; mean 21032, stdev 9, 21026-21039); queued mean 21039, stdev 0, 21039-21039); -# -# -v0.4.8#7018287276778061830 -0x0 -0x4c50b4d357c71 -0x0 -0x1d4243a82bdaf -0x1b8163df9fd828 -0x1 -0x2183a843d557d -0x19fc89d7b09642 -0x0 -0x15b3f41126497d -0x181 -0xb6020211ce8fd -0x1a -0x97669f5b06dd0 -0x10a6f0c1e990aa -0x0 -0x15c956ea01fae5 -0x96 -0xc06bb0d5fde11 -0x27 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823191039-29281.fail deleted file mode 100644 index 534a3fcd52..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400043c930), (*core.testTx)(0x1400043c960)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 current_total2in_batch0removed1427emptyBlocks0blockGasLeft14449pending0locals1locals+pending138.666µs -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 block0pending2queued0elapsed138.666µs -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.041µs -# TestSmallTxPool/thread_1 2022/08/23 19:10:39 block1pending0queued1elapsed1.041µs -# TestSmallTxPool/thread_1 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/23 19:10:59 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 21007, stdev 8, 21001-21013); queued mean 21001, stdev 0, 21001-21001); -# -# -v0.4.8#14403251614016077834 -0x12a97ee40d6ba4 -0xb9c1016a0871e -0x1 -0x895cbbe249c79 -0x95fe619d4a080 -0x1 -0x1c6eb6bc691ce -0x98168078caa0e -0x0 -0x407b2c97ec5fc -0x1 -0x9580bdcf02f46 -0xd -0x1fd9db6f7fdfd -0xdea1a13d4818d -0x0 -0x1b9dc8f25305a7 -0x25e -0x13cb98d916a1 -0x1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220824134822-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220824134822-34401.fail deleted file mode 100644 index d70cd62d0b..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_1/TestSmallTxPool_thread_1-20220824134822-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400071c390), (*core.testTx)(0x1400071c3c0)}, totalTxs:2} -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending180.083µs -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 block0pending2queued0elapsed180.083µs -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.292µs -# TestSmallTxPool/thread_1 2022/08/24 13:48:22 block1pending0queued1elapsed1.292µs -# TestSmallTxPool/thread_1 2022/08/24 13:48:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_1 2022/08/24 13:48:42 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 308879, stdev 407120, 21001-596757); queued mean 596757, stdev 0, 596757-596757); -# -# -v0.4.8#980598173921705994 -0x18ea98f3bfb1cb -0x1ceed6f3f248db -0x1 -0x1aebd413a3959d -0x16d9c62d659b64 -0x1 -0x1972791517ec06 -0x1d9f72a515fdb6 -0x0 -0x22e91e021d3bd -0x0 -0x56f90e9b60f7e -0x1 -0x10301c2bda1e56 -0x164b36f2c6915a -0x0 -0x8eec91fb0fc78 -0x7 -0x1bb17c8ff3bb6b -0x8c90d \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151331-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151331-26278.fail deleted file mode 100644 index 095a07c2d7..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151331-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:13:31 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:13:31 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000916108), (*core.testTx)(0x14000916138)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:13:31 current_total2in_batch0removed2emptyBlocks0blockGasLeft1860730pending0locals1locals+pending15.958µs -# TestSmallTxPool/thread_2 2022/08/23 15:13:31 block0pending2queued0elapsed15.958µs -# TestSmallTxPool/thread_2 2022/08/23 15:13:32 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending7.75µs -# TestSmallTxPool/thread_2 2022/08/23 15:13:32 block1pending0queued1elapsed7.75µs -# TestSmallTxPool/thread_2 2022/08/23 15:13:34 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:13:34 Case params: totalAccs = 1; totalTxs = 2; mean 7045320, stdev 9933880, 21006-14069635); queued mean 21006, stdev 0, 21006-21006); -# -# -v0.4.8#11031115078727368725 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x1654b1adcb6148 -0xdf7913ad682c0 -0x0 -0x1afa0a4a686226 -0x212 -0x1e794d7d9110d4 -0xd65d7b -0x188af114bc763a -0x138af91635004f -0x0 -0x137a1e63b55cc6 -0x83 -0x92dd858d02d22 -0x6 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151945-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151945-26429.fail deleted file mode 100644 index 13de71b372..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823151945-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:19:45 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:19:45 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400030c540), (*core.testTx)(0x1400030c570)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:19:45 current_total2in_batch0removed20emptyBlocks0blockGasLeft849240pending0locals1locals+pending6.834µs -# TestSmallTxPool/thread_2 2022/08/23 15:19:45 block0pending2queued0elapsed6.834µs -# TestSmallTxPool/thread_2 2022/08/23 15:19:46 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending10.125µs -# TestSmallTxPool/thread_2 2022/08/23 15:19:46 block1pending0queued1elapsed10.125µs -# TestSmallTxPool/thread_2 2022/08/23 15:19:49 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:19:49 Case params: totalAccs = 1; totalTxs = 2; mean 739269, stdev 1015785, 21000-1457538); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#9791059820239912998 -0x0 -0x0 -0x0 -0x0 -0x9891e9d09e8e -0x1 -0x176a8e3aef0257 -0xc820b88f35a3b -0x0 -0x1bb7d024a4bd7 -0x1 -0x1b22b625a9884c -0x15eb7a -0xdf88b2ba18f3f -0x1dea4b012e0db4 -0x0 -0xedd0f7a0ad2c2 -0x28 -0xb2cd1ce809ef -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823152442-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823152442-26736.fail deleted file mode 100644 index fad31fd2dd..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823152442-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:24:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:24:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000ab8600), (*core.testTx)(0x14000ab8630)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:24:42 current_total2in_batch0removed1426emptyBlocks0blockGasLeft19776pending0locals1locals+pending256.333µs -# TestSmallTxPool/thread_2 2022/08/23 15:24:42 block0pending2queued0elapsed256.333µs -# TestSmallTxPool/thread_2 2022/08/23 15:24:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending5.917µs -# TestSmallTxPool/thread_2 2022/08/23 15:24:43 block1pending0queued1elapsed5.917µs -# TestSmallTxPool/thread_2 2022/08/23 15:24:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:24:46 Case params: totalAccs = 1; totalTxs = 2; mean 258083, stdev 335252, 21024-495143); queued mean 495143, stdev 0, 495143-495143); -# -# -v0.4.8#3220235739736309768 -0x0 -0x0 -0x0 -0x0 -0x578ef9ca2f7fd -0x1 -0x17d40dde5d864f -0x5341422cf03e7 -0x0 -0x14d31987ad7269 -0x1d9 -0xab5e18a4b628b -0x18 -0xcacb7e3233242 -0x1f1632f7b0d7e -0x0 -0x1934319689aef6 -0x27c -0x1aad69da6467b7 -0x73c1f \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153142-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153142-26804.fail deleted file mode 100644 index 5e21a448bf..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153142-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:31:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:31:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000284570), (*core.testTx)(0x140002845a0)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:31:42 current_total2in_batch0removed1428emptyBlocks0blockGasLeft576pending0locals1locals+pending356.458µs -# TestSmallTxPool/thread_2 2022/08/23 15:31:42 block0pending2queued0elapsed356.458µs -# TestSmallTxPool/thread_2 2022/08/23 15:31:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending4.75µs -# TestSmallTxPool/thread_2 2022/08/23 15:31:43 block1pending0queued1elapsed4.75µs -# TestSmallTxPool/thread_2 2022/08/23 15:31:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:31:46 Case params: totalAccs = 1; totalTxs = 2; mean 21008, stdev 0, 21008-21008); queued mean 21008, stdev 0, 21008-21008); -# -# -v0.4.8#10709906569287434252 -0x0 -0x0 -0x0 -0x0 -0x6afb37ff8cd0a -0x1 -0x191c00de3da27d -0x197d1f616e641c -0x0 -0x14379cc83b4afa -0x4f -0xa38dd063d6cda -0x8 -0x12e4687da004ee -0x19959e0de31a09 -0x0 -0x189ea53ea8418b -0xe2 -0xd3c2357fe3d98 -0x8 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153527-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153527-26949.fail deleted file mode 100644 index c7a3c41f38..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153527-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:35:27 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:35:27 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e678), (*core.testTx)(0x1400000e6a8)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:35:27 current_total2in_batch0removed1276emptyBlocks0blockGasLeft3792pending0locals1locals+pending40.958µs -# TestSmallTxPool/thread_2 2022/08/23 15:35:27 block0pending2queued0elapsed40.958µs -# TestSmallTxPool/thread_2 2022/08/23 15:35:28 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending6.209µs -# TestSmallTxPool/thread_2 2022/08/23 15:35:28 block1pending0queued1elapsed6.209µs -# TestSmallTxPool/thread_2 2022/08/23 15:35:39 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:35:39 Case params: totalAccs = 1; totalTxs = 2; mean 22279, stdev 1738, 21050-23508); queued mean 21050, stdev 0, 21050-21050); -# -# -v0.4.8#13593994666377740292 -0x0 -0xad3abfd0488cb -0x0 -0x18a540bca8ae75 -0x2bad5cfedec60 -0x1 -0xe7e919206fe3e -0x309ffdd2a6f8f -0x0 -0x13f50c0d1475bb -0x1e5 -0x14c1697ffc3006 -0x9cc -0x89445cf7b30c0 -0x14036b5ab852fa -0x0 -0x1f5e58cb65c954 -0xffffffffffffffff -0x117d1908ee73e3 -0x32 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153947-27019.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153947-27019.fail deleted file mode 100644 index 2c10d7e17f..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823153947-27019.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:39:47 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_2 2022/08/23 15:39:47 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140000a61c8), (*core.testTx)(0x140000a61f8)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:39:47 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending80.792µs -# TestSmallTxPool/thread_2 2022/08/23 15:39:47 block0pending2queued0elapsed80.792µs -# TestSmallTxPool/thread_2 2022/08/23 15:39:48 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending917ns -# TestSmallTxPool/thread_2 2022/08/23 15:39:48 block1pending0queued1elapsed917ns -# TestSmallTxPool/thread_2 2022/08/23 15:39:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:39:59 Case params: totalAccs = 2; totalTxs = 2; mean 21000, stdev 0, 21000-21001); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#4217277659807219721 -0x0 -0x105ef490e35b8e -0x1 -0xc33ade00e9874 -0xd4ad3b40ffcda -0x1 -0x18b77fe8a754ff -0x18ac9abaf2ca9c -0x0 -0x1fb1183885214a -0xffffffffffffffff -0x270aabd5c356c -0x1 -0x8e021f090beac -0x3e2a92f7702db -0x0 -0x11256749c75edc -0x2a -0x702f0326217b5 -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154141-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154141-27072.fail deleted file mode 100644 index 31eed60bb9..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154141-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:41:41 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_2 2022/08/23 15:41:41 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e378), (*core.testTx)(0x1400000e3a8)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:41:41 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending318.375µs -# TestSmallTxPool/thread_2 2022/08/23 15:41:41 block0pending2queued0elapsed318.375µs -# TestSmallTxPool/thread_2 2022/08/23 15:41:42 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.792µs -# TestSmallTxPool/thread_2 2022/08/23 15:41:42 block1pending0queued1elapsed3.792µs -# TestSmallTxPool/thread_2 2022/08/23 15:41:53 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:41:53 Case params: totalAccs = 2; totalTxs = 2; mean 21003, stdev 2, 21001-21005); queued mean 21005, stdev 0, 21005-21005); -# -# -v0.4.8#13828829424990027782 -0x0 -0x17706ac5cb4ae1 -0x1 -0x3d74c6ae803f -0xb9ccc97fa1daf -0x1 -0x30803d5f62b7 -0x10a22f39e8734c -0x0 -0x5471df2de48b9 -0x3 -0x839977049f916 -0x1 -0x1b140c118b3814 -0x16835704d31871 -0x0 -0x117ea4fc6f7ad -0x0 -0x5fe5c78bda99e -0x5 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154451-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154451-27147.fail deleted file mode 100644 index 740d0d38f8..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823154451-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 15:44:51 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 15:44:51 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000090900), (*core.testTx)(0x14000090930)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 15:44:51 current_total2in_batch0removed156emptyBlocks0blockGasLeft67812pending0locals1locals+pending36.625µs -# TestSmallTxPool/thread_2 2022/08/23 15:44:51 block0pending2queued0elapsed36.625µs -# TestSmallTxPool/thread_2 2022/08/23 15:44:52 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending21.25µs -# TestSmallTxPool/thread_2 2022/08/23 15:44:52 block1pending0queued1elapsed21.25µs -# TestSmallTxPool/thread_2 2022/08/23 15:45:03 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 15:45:03 Case params: totalAccs = 1; totalTxs = 2; mean 106437, stdev 120824, 21002-191873); queued mean 21002, stdev 0, 21002-21002); -# -# -v0.4.8#7018227147235917829 -0x0 -0x1324b3ba0e1027 -0x0 -0x7fa30b5be2896 -0x83eaa965adc0e -0x1 -0x70b401e48f04c -0x11c2160b240508 -0x0 -0x1b68ee1501abde -0xc -0x1989f24e100818 -0x29b79 -0x1db771fdca8fed -0x10009b30a4d9cd -0x0 -0x20f9f0351d617 -0x0 -0x36c6b82923e8f -0x2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823191039-29281.fail deleted file mode 100644 index dc6b37c10c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000598480), (*core.testTx)(0x140005984b0)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 current_total2in_batch0removed1417emptyBlocks0blockGasLeft7778pending0locals1locals+pending113.5µs -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 block0pending2queued0elapsed113.5µs -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending834ns -# TestSmallTxPool/thread_2 2022/08/23 19:10:39 block1pending0queued1elapsed834ns -# TestSmallTxPool/thread_2 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/23 19:10:59 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21083, stdev 116, 21001-21166); queued mean 21001, stdev 0, 21001-21001); -# -# -v0.4.8#14403062635455053833 -0x4b99d67c7c02e -0x1d8b8aeab38be3 -0x0 -0x10d35a6e86e4d -0x1ae10a0baca0a3 -0x1 -0x15af9604b30279 -0x6319258f77350 -0x0 -0x193ba0e133e36a -0x2d -0x13258a7049f31b -0xa6 -0x6dc2ccc2c7702 -0x1b26173c42d219 -0x0 -0x70ce1a926153f -0x3 -0x1752d3156aed9 -0x1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220824134922-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220824134922-34401.fail deleted file mode 100644 index 5eb9a1df8c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_2/TestSmallTxPool_thread_2-20220824134922-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140000c0708), (*core.testTx)(0x140000c0738)}, totalTxs:2} -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 current_total2in_batch0removed1427emptyBlocks0blockGasLeft17303pending0locals1locals+pending135.75µs -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 block0pending2queued0elapsed135.75µs -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1µs -# TestSmallTxPool/thread_2 2022/08/24 13:49:22 block1pending0queued1elapsed1µs -# TestSmallTxPool/thread_2 2022/08/24 13:49:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_2 2022/08/24 13:49:42 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21032, stdev 29, 21011-21053); queued mean 21053, stdev 0, 21053-21053); -# -# -v0.4.8#977102070542761998 -0x1bab9d1f9957e3 -0x17febbe4547f12 -0x0 -0x11bedabac69ef0 -0xddaed005d9265 -0x1 -0x1bb50a9d9c79de -0x5e9ee9fc283c -0x0 -0x1ceac372cda52a -0x2b7 -0x8078135e846d4 -0xb -0x13989181607345 -0x10a36ffb4220e6 -0x0 -0x11741b0a1f62dd -0x4d -0xd0a0af71645ff -0x35 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151323-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151323-26278.fail deleted file mode 100644 index 80a700b110..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151323-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:13:23 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:13:23 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000492000), (*core.testTx)(0x14000492030)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:13:23 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending83.834µs -# TestSmallTxPool/thread_3 2022/08/23 15:13:23 block0pending2queued0elapsed83.834µs -# TestSmallTxPool/thread_3 2022/08/23 15:13:24 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.208µs -# TestSmallTxPool/thread_3 2022/08/23 15:13:24 block1pending0queued1elapsed1.208µs -# TestSmallTxPool/thread_3 2022/08/23 15:13:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:13:26 Case params: totalAccs = 1; totalTxs = 2; mean 34053, stdev 18460, 21000-47107); queued mean 47107, stdev 0, 47107-47107); -# -# -v0.4.8#11031162323367624714 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0xd7083502a8247 -0x1df963b84357c0 -0x0 -0x1a677f69a4abb8 -0x34 -0x4344f87a449b9 -0x0 -0x9ae961d233025 -0xebb2b26494f2b -0x0 -0x1a670ecbe4adf0 -0x3b1 -0x1809c5bd78df0b -0x65fb \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151922-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151922-26429.fail deleted file mode 100644 index c84958108a..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823151922-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:19:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:19:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140000901b0), (*core.testTx)(0x140000901f8)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:19:22 current_total2in_batch0removed1389emptyBlocks0blockGasLeft14268pending0locals1locals+pending44.416µs -# TestSmallTxPool/thread_3 2022/08/23 15:19:22 block0pending2queued0elapsed44.416µs -# TestSmallTxPool/thread_3 2022/08/23 15:19:23 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.625µs -# TestSmallTxPool/thread_3 2022/08/23 15:19:23 block1pending0queued1elapsed1.625µs -# TestSmallTxPool/thread_3 2022/08/23 15:19:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:19:26 Case params: totalAccs = 1; totalTxs = 2; mean 4480604, stdev 6306000, 21588-8939620); queued mean 8939620, stdev 0, 8939620-8939620); -# -# -v0.4.8#9788482839862312965 -0x0 -0x0 -0x0 -0x0 -0x117115a0cbf14 -0x1 -0xa1d7d3019b09c -0x1b366a2f95582c -0x0 -0x12dee785d43e7e -0x4a -0x12d5cf86c4347c -0x24c -0x161b7d5757c6e9 -0xc37009db048d1 -0x0 -0xa6e16ef6367c1 -0xc -0x1ee7e52179bcd9 -0x88165c \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823152449-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823152449-26736.fail deleted file mode 100644 index 185abcd87e..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823152449-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:24:49 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:24:49 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400009e138), (*core.testTx)(0x1400009e180)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:24:49 current_total2in_batch0removed2emptyBlocks0blockGasLeft0pending0locals1locals+pending26.5µs -# TestSmallTxPool/thread_3 2022/08/23 15:24:49 block0pending2queued0elapsed26.5µs -# TestSmallTxPool/thread_3 2022/08/23 15:24:50 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending16.208µs -# TestSmallTxPool/thread_3 2022/08/23 15:24:50 block1pending0queued1elapsed16.208µs -# TestSmallTxPool/thread_3 2022/08/23 15:24:53 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:24:53 Case params: totalAccs = 1; totalTxs = 2; mean 13261564, stdev 2458519, 11523128-15000000); queued mean 11523128, stdev 0, 11523128-11523128); -# -# -v0.4.8#3219449760721141770 -0x0 -0x0 -0x0 -0x0 -0x1e32d1c47af00f -0x1 -0xe9816f09271ff -0x15e81cc03028e9 -0x0 -0x91dba23abc996 -0x2 -0x1fddea1af24780 -0xffffffffffffffff -0x5e6ff71937c46 -0x96f1d5d4cdb87 -0x0 -0x185e6a0483811f -0x153 -0x1e09749244ea84 -0xaf8230 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153134-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153134-26804.fail deleted file mode 100644 index 9753d5e600..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153134-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:31:34 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:31:34 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006a20f0), (*core.testTx)(0x140006a2120)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:31:34 current_total2in_batch0removed2emptyBlocks0blockGasLeft0pending0locals1locals+pending12.583µs -# TestSmallTxPool/thread_3 2022/08/23 15:31:34 block0pending2queued0elapsed12.583µs -# TestSmallTxPool/thread_3 2022/08/23 15:31:35 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending34.125µs -# TestSmallTxPool/thread_3 2022/08/23 15:31:35 block1pending0queued1elapsed34.125µs -# TestSmallTxPool/thread_3 2022/08/23 15:31:38 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:31:38 Case params: totalAccs = 1; totalTxs = 2; mean 7510920, stdev 10591158, 21840-15000000); queued mean 21840, stdev 0, 21840-21840); -# -# -v0.4.8#10709773425301258245 -0x0 -0x0 -0x0 -0x0 -0x1742106751b018 -0x1 -0x1f4e486736dd58 -0x564aed5658142 -0x0 -0x178f72949d12ed -0xf8 -0x1fb8da494df540 -0xffffffffffffffff -0x15f13425d7e7e8 -0x613607c708b0e -0x0 -0x17725d1c3fd6cc -0x1e -0x14729a6b9144d0 -0x348 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153541-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153541-26949.fail deleted file mode 100644 index fedb2157cd..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823153541-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:35:41 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_3 2022/08/23 15:35:41 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400074c108), (*core.testTx)(0x1400074c138)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:35:41 current_total2in_batch0removed1419emptyBlocks0blockGasLeft2340pending1locals0locals+pending152.584µs -# TestSmallTxPool/thread_3 2022/08/23 15:35:41 block0pending2queued0elapsed152.584µs -# TestSmallTxPool/thread_3 2022/08/23 15:35:42 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending5.958µs -# TestSmallTxPool/thread_3 2022/08/23 15:35:42 block1pending0queued1elapsed5.958µs -# TestSmallTxPool/thread_3 2022/08/23 15:35:53 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:35:53 Case params: totalAccs = 2; totalTxs = 2; mean 21071, stdev 96, 21003-21140); queued mean 21003, stdev 0, 21003-21003); -# -# -v0.4.8#13595291746501132296 -0x0 -0x0 -0x1 -0x15a2a109430425 -0xb6ee685f730b7 -0x1 -0x3d35aed08d247 -0x1f6ba1453abad2 -0xffffffffffffffff -0x1f67692db83f31 -0xffffffffffffffff -0x1373f0cf54ddc1 -0x8c -0xc9bb3d8e0f9ef -0x16d2223345adae -0x1 -0xd6167ee6dba36 -0xd -0x2f313217ae549 -0x3 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154141-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154141-27072.fail deleted file mode 100644 index bdd14cd5c6..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154141-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:41:41 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:41:41 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400071c450), (*core.testTx)(0x1400071c480)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:41:41 current_total2in_batch0removed1414emptyBlocks0blockGasLeft20372pending0locals1locals+pending284.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:41:41 block0pending2queued0elapsed284.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:41:42 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending5.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:41:42 block1pending0queued1elapsed5.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:41:53 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:41:53 Case params: totalAccs = 1; totalTxs = 2; mean 21101, stdev 142, 21000-21202); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#13828855194793803783 -0x0 -0x572dcc001cc11 -0x0 -0x1f1c642ae2b5c9 -0x182eb5cb48752b -0x1 -0x19cb5b4b0f3808 -0x17da393328d02d -0x0 -0x1fc035715c2605 -0xffffffffffffffff -0x11e36a17660778 -0xca -0x1a40c3d03ba22a -0x61e50300e793c -0x0 -0x1159db5b5a4654 -0x42 -0x28bed52aa7e90 -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154630-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154630-27147.fail deleted file mode 100644 index 72fb51adf7..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823154630-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 15:46:30 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_3 2022/08/23 15:46:30 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006ac0f0), (*core.testTx)(0x140006ac120)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 15:46:30 current_total2in_batch0removed1420emptyBlocks0blockGasLeft13860pending0locals1locals+pending216.166µs -# TestSmallTxPool/thread_3 2022/08/23 15:46:30 block0pending2queued0elapsed216.166µs -# TestSmallTxPool/thread_3 2022/08/23 15:46:31 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending26.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:46:31 block1pending0queued1elapsed26.375µs -# TestSmallTxPool/thread_3 2022/08/23 15:46:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 15:46:42 Case params: totalAccs = 1; totalTxs = 2; mean 21940, stdev 1163, 21117-22763); queued mean 22763, stdev 0, 22763-22763); -# -# -v0.4.8#7018076823380557882 -0x0 -0x14ff0301d2ab30 -0x0 -0x1fb7fffb5261d3 -0x1e3e6d00eccae9 -0x1 -0x16ccca9c2e6dca -0x1ea101d0566723 -0x0 -0x19cc76e791c00a -0x91 -0x10402f1962d216 -0x75 -0x1d8a713414b8a0 -0xdbe457adc6c4e -0x0 -0xdf2bd2a63bad4 -0x2f -0x158a01f4f8c867 -0x6e3 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823191059-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823191059-29281.fail deleted file mode 100644 index e564693ebc..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220823191059-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400043c018), (*core.testTx)(0x1400043c060)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending1locals0locals+pending279.208µs -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 block0pending2queued0elapsed279.208µs -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending3.875µs -# TestSmallTxPool/thread_3 2022/08/23 19:10:59 block1pending0queued1elapsed3.875µs -# TestSmallTxPool/thread_3 2022/08/23 19:11:19 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/23 19:11:19 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 21001, stdev 0, 21001-21002); queued mean 21002, stdev 0, 21002-21002); -# -# -v0.4.8#14401134195139149828 -0x0 -0x1b31b8a9fec93a -0x1 -0xb5eda6f8ac7e5 -0x1918d68e71cf8a -0x1 -0x9e70543c193b2 -0x14c776c6d0b0e5 -0x1 -0x157126f2506c3d -0x12a -0x177ffbd3259f9 -0x1 -0x1c4318b17c13fa -0x1db9c0c9110179 -0x1 -0x8d11e31fe07c6 -0x7 -0x4caf0180c774e -0x2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220824134842-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220824134842-34401.fail deleted file mode 100644 index 6d1c24dd69..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_3/TestSmallTxPool_thread_3-20220824134842-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400015c0f0), (*core.testTx)(0x1400015c120)}, totalTxs:2} -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending117.917µs -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 block0pending2queued0elapsed117.917µs -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.834µs -# TestSmallTxPool/thread_3 2022/08/24 13:48:42 block1pending0queued1elapsed1.834µs -# TestSmallTxPool/thread_3 2022/08/24 13:49:02 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_3 2022/08/24 13:49:02 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 21002, stdev 3, 21000-21005); queued mean 21005, stdev 0, 21005-21005); -# -# -v0.4.8#976943156752809991 -0x81928db18fdaf -0x1989fd056815b4 -0x1 -0x9dee2c4b9ec -0xeac18dad53be4 -0x1 -0x1d2c8c7b5f21d4 -0xfdd0966b13ba1 -0x0 -0x1003f5b9463200 -0x75 -0x4f9672a84547c -0x0 -0x12cde91532d06c -0xe0d17ec83c149 -0x0 -0x375bc4eadf7d2 -0x1 -0x89c8536710d98 -0x5 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151321-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151321-26278.fail deleted file mode 100644 index 2ee4b70122..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151321-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:13:21 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_4 2022/08/23 15:13:21 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140001be618), (*core.testTx)(0x140001be648)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:13:21 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending153.167µs -# TestSmallTxPool/thread_4 2022/08/23 15:13:21 block0pending2queued0elapsed153.167µs -# TestSmallTxPool/thread_4 2022/08/23 15:13:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.834µs -# TestSmallTxPool/thread_4 2022/08/23 15:13:22 block1pending0queued1elapsed3.834µs -# TestSmallTxPool/thread_4 2022/08/23 15:13:24 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:13:24 Case params: totalAccs = 1; totalTxs = 2; mean 6229664, stdev 8780375, 21001-12438327); queued mean 12438327, stdev 0, 12438327-12438327); -# -# -v0.4.8#11030634042390216709 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x1d06b66f316e1c -0x164c18ac1ea1a2 -0x0 -0x14d3bf5a8e3077 -0x317 -0x4feed91528ba6 -0x1 -0xbe39c102d0634 -0x63fdb2c67025d -0x0 -0x8090966120c6a -0x4 -0x1ce906d6a0c542 -0xbd792f \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151922-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151922-26429.fail deleted file mode 100644 index 3799cefdf7..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823151922-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:19:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_4 2022/08/23 15:19:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400035e1b0), (*core.testTx)(0x1400035e258)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:19:22 current_total2in_batch0removed1426emptyBlocks0blockGasLeft18350pending0locals1locals+pending47.209µs -# TestSmallTxPool/thread_4 2022/08/23 15:19:22 block0pending2queued0elapsed47.209µs -# TestSmallTxPool/thread_4 2022/08/23 15:19:23 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending250ns -# TestSmallTxPool/thread_4 2022/08/23 15:19:23 block1pending0queued1elapsed250ns -# TestSmallTxPool/thread_4 2022/08/23 15:19:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:19:26 Case params: totalAccs = 1; totalTxs = 2; mean 972250, stdev 1345235, 21025-1923475); queued mean 1923475, stdev 0, 1923475-1923475); -# -# -v0.4.8#9789492157176872966 -0x0 -0x0 -0x0 -0x0 -0xc1cd9e45c9797 -0x1 -0x112d5b2dbe9862 -0x1e895f894d65c5 -0x0 -0x934d794391b50 -0x2 -0xe35c14a2d6517 -0x19 -0x1a7808c64395b9 -0x87f75d274e2f7 -0x0 -0x17720e70971762 -0x1d8 -0x1b46b3005127eb -0x1d078b \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823152444-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823152444-26736.fail deleted file mode 100644 index 2ff144c07c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823152444-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:24:44 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_4 2022/08/23 15:24:44 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400009f110), (*core.testTx)(0x1400009e018)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:24:44 current_total2in_batch0removed7emptyBlocks0blockGasLeft2918288pending0locals1locals+pending16.875µs -# TestSmallTxPool/thread_4 2022/08/23 15:24:44 block0pending2queued0elapsed16.875µs -# TestSmallTxPool/thread_4 2022/08/23 15:24:45 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending8.458µs -# TestSmallTxPool/thread_4 2022/08/23 15:24:45 block1pending0queued1elapsed8.458µs -# TestSmallTxPool/thread_4 2022/08/23 15:24:48 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:24:48 Case params: totalAccs = 1; totalTxs = 2; mean 1944920, stdev 2720799, 21025-3868816); queued mean 21025, stdev 0, 21025-21025); -# -# -v0.4.8#3219063213664501766 -0x0 -0x0 -0x0 -0x0 -0x1f4a7f7e15970a -0xffffffffffffffff -0x16f1c10f6e04a -0x1fb262ace3006a -0xffffffffffffffff -0x8a27bd4afd7a2 -0x4 -0x1c32e76fe122a5 -0x3ab688 -0xc84b680175c91 -0xb5d64e965f808 -0x0 -0x14a69a979cc2ea -0x13d -0x13124fe8655432 -0x19 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153154-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153154-26804.fail deleted file mode 100644 index 54df560eff..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153154-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:31:54 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_4 2022/08/23 15:31:54 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000f968), (*core.testTx)(0x1400000f998)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:31:54 current_total2in_batch0removed1426emptyBlocks0blockGasLeft4090pending0locals1locals+pending134.125µs -# TestSmallTxPool/thread_4 2022/08/23 15:31:54 block0pending2queued0elapsed134.125µs -# TestSmallTxPool/thread_4 2022/08/23 15:31:55 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending17.084µs -# TestSmallTxPool/thread_4 2022/08/23 15:31:55 block1pending0queued1elapsed17.084µs -# TestSmallTxPool/thread_4 2022/08/23 15:31:58 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:31:58 Case params: totalAccs = 1; totalTxs = 2; mean 681618, stdev 934205, 21035-1342201); queued mean 1342201, stdev 0, 1342201-1342201); -# -# -v0.4.8#10710159972357898275 -0x0 -0x0 -0x0 -0x0 -0x18382d74c57930 -0x1 -0x891e4327220d8 -0x148f5e50ab597b -0x0 -0x144ebabb1a89bd -0xc3 -0xe76c747ec74c9 -0x23 -0x15972a7b70009e -0x24c0d59454bcb -0x0 -0x1446b4e8a17335 -0x156 -0x1da16475883143 -0x1428f1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153540-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153540-26949.fail deleted file mode 100644 index 87a59d80f9..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823153540-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:35:40 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_4 2022/08/23 15:35:40 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000b1a2e8), (*core.testTx)(0x14000b1a318)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:35:40 current_total2in_batch0removed1416emptyBlocks0blockGasLeft4872pending1locals0locals+pending59.25µs -# TestSmallTxPool/thread_4 2022/08/23 15:35:40 block0pending2queued0elapsed59.25µs -# TestSmallTxPool/thread_4 2022/08/23 15:35:41 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending18.958µs -# TestSmallTxPool/thread_4 2022/08/23 15:35:41 block1pending0queued1elapsed18.958µs -# TestSmallTxPool/thread_4 2022/08/23 15:35:52 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:35:52 Case params: totalAccs = 2; totalTxs = 2; mean 21097, stdev 121, 21011-21183); queued mean 21011, stdev 0, 21011-21011); -# -# -v0.4.8#13592762010763788292 -0x0 -0x0 -0x1 -0xbaf4efb368619 -0xd31d8dc73d96d -0x1 -0x105ce41301703b -0x1307d46b9d5034 -0x1 -0x148f2a0f027467 -0x399 -0x11375ecd1fee7c -0xb7 -0x133b75276968de -0x312eb69ceeec3 -0x1 -0xf5e5a080588c1 -0xd -0x7e63c773dc9a3 -0xb \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154130-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154130-27072.fail deleted file mode 100644 index dd23a92f60..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154130-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:41:30 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_4 2022/08/23 15:41:30 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140002a2390), (*core.testTx)(0x140002a23d8)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:41:30 current_total2in_batch0removed2emptyBlocks0blockGasLeft0pending0locals1locals+pending6.209µs -# TestSmallTxPool/thread_4 2022/08/23 15:41:30 block0pending2queued0elapsed6.209µs -# TestSmallTxPool/thread_4 2022/08/23 15:41:31 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.625µs -# TestSmallTxPool/thread_4 2022/08/23 15:41:31 block1pending0queued1elapsed3.625µs -# TestSmallTxPool/thread_4 2022/08/23 15:41:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:41:42 Case params: totalAccs = 1; totalTxs = 2; mean 7510500, stdev 10591751, 21001-15000000); queued mean 21001, stdev 0, 21001-21001); -# -# -v0.4.8#13829009813616459782 -0x0 -0x731778e2aaab9 -0x0 -0x54c3beef22c4c -0x1787c2c84e122f -0x1 -0x5776b67f36708 -0x19fe918f1ff6dc -0x0 -0x34610a9dedce2 -0x1 -0x1fd954956237b8 -0xffffffffffffffff -0x10580638e6eb83 -0x14776e6d9ce1c7 -0x0 -0x2c2d7299b867d -0x0 -0xd218c00b1559 -0x1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154525-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154525-27147.fail deleted file mode 100644 index 49d82e9a81..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823154525-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 15:45:25 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_4 2022/08/23 15:45:25 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006acb58), (*core.testTx)(0x140006acb88)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 15:45:25 current_total2in_batch0removed1031emptyBlocks0blockGasLeft7179pending1locals0locals+pending126.75µs -# TestSmallTxPool/thread_4 2022/08/23 15:45:25 block0pending2queued0elapsed126.75µs -# TestSmallTxPool/thread_4 2022/08/23 15:45:26 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending7.25µs -# TestSmallTxPool/thread_4 2022/08/23 15:45:26 block1pending0queued1elapsed7.25µs -# TestSmallTxPool/thread_4 2022/08/23 15:45:37 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 15:45:37 Case params: totalAccs = 2; totalTxs = 2; mean 25054, stdev 5709, 21017-29091); queued mean 21017, stdev 0, 21017-21017); -# -# -v0.4.8#7019068960825933841 -0x0 -0x0 -0x1 -0x190c6ed994ccb5 -0x1eccdbb07ddd4a -0x1 -0x798c55bd5faf3 -0xe8c111cda3d2f -0x1 -0x1282dd6ba05fd8 -0xba -0x15b082cb2367c5 -0x1f9b -0x1f97e93f76db9a -0xa07d44aa22ed4 -0x1 -0x166c35ece81ca4 -0x28e -0xb6813b03cbbbd -0x11 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823191119-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823191119-29281.fail deleted file mode 100644 index eb93bdba5f..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220823191119-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e738), (*core.testTx)(0x1400000e768)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 current_total2in_batch0removed1427emptyBlocks0blockGasLeft20157pending0locals1locals+pending128.166µs -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 block0pending2queued0elapsed128.166µs -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.291µs -# TestSmallTxPool/thread_4 2022/08/23 19:11:19 block1pending0queued1elapsed1.291µs -# TestSmallTxPool/thread_4 2022/08/23 19:11:39 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/23 19:11:39 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 21045, stdev 50, 21009-21081); queued mean 21081, stdev 0, 21081-21081); -# -# -v0.4.8#14401263044158029832 -0x7639c95a32e96 -0x2ddda92b7e854 -0x1 -0x2feec666eb61d -0x8a076036bdc92 -0x1 -0xf5711b0f593cb -0x1b5cbdfc67d90b -0x0 -0xc3698ea09a5a2 -0x3 -0x9dd661d7b0acb -0x9 -0x1581a2724b71a3 -0xd3efd4871067c -0x0 -0x15ab047a194ca3 -0x3 -0xe2005991c6763 -0x51 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220824135022-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220824135022-34401.fail deleted file mode 100644 index a0c27f44ef..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_4/TestSmallTxPool_thread_4-20220824135022-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140005ce1f8), (*core.testTx)(0x140005ce228)}, totalTxs:2} -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 current_total2in_batch0removed1391emptyBlocks0blockGasLeft15604pending1locals0locals+pending51.125µs -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 block0pending2queued0elapsed51.125µs -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending292ns -# TestSmallTxPool/thread_4 2022/08/24 13:50:22 block1pending0queued1elapsed292ns -# TestSmallTxPool/thread_4 2022/08/24 13:50:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_4 2022/08/24 13:50:42 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 1095004, stdev 1518084, 21556-2168452); queued mean 2168452, stdev 0, 2168452-2168452); -# -# -v0.4.8#976977516491178012 -0x0 -0xe2a3099f2557d -0x1 -0x1605092d366d31 -0x1d3de7520be918 -0x1 -0x7082e0ee5e26c -0x13170db138e38 -0x1 -0x19b0468d3b8b7e -0x1a2 -0x127fa336152396 -0x22c -0xe2896f56210f8 -0xa8a8629ad16a7 -0x1 -0x1b3355a6fb3c17 -0x184 -0x1ba084f241acbf -0x20c47c \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151319-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151319-26278.fail deleted file mode 100644 index b4c6c82753..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151319-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:13:19 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:13:19 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400045a270), (*core.testTx)(0x1400045a2a0)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:13:19 current_total2in_batch0removed1427emptyBlocks0blockGasLeft15876pending0locals1locals+pending92.875µs -# TestSmallTxPool/thread_5 2022/08/23 15:13:19 block0pending2queued0elapsed92.875µs -# TestSmallTxPool/thread_5 2022/08/23 15:13:20 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending5.917µs -# TestSmallTxPool/thread_5 2022/08/23 15:13:20 block1pending0queued1elapsed5.917µs -# TestSmallTxPool/thread_5 2022/08/23 15:13:22 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:13:22 Case params: totalAccs = 1; totalTxs = 2; mean 21307, stdev 417, 21012-21602); queued mean 21602, stdev 0, 21602-21602); -# -# -v0.4.8#11030625452455624707 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x1526ee59916032 -0xa3422c2178a78 -0x0 -0xe67482fc05d7c -0x3d -0xa5f07d2d821d4 -0xc -0x15eea695572682 -0x1217ab82c3ce13 -0x0 -0xfb0171991b22b -0x1 -0x133eb169b9a4bf -0x25a \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151950-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151950-26429.fail deleted file mode 100644 index a52f168962..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823151950-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:19:50 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:19:50 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000090618), (*core.testTx)(0x14000090648)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:19:50 current_total2in_batch0removed1356emptyBlocks0blockGasLeft20196pending0locals1locals+pending127.459µs -# TestSmallTxPool/thread_5 2022/08/23 15:19:50 block0pending2queued0elapsed127.459µs -# TestSmallTxPool/thread_5 2022/08/23 15:19:51 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.125µs -# TestSmallTxPool/thread_5 2022/08/23 15:19:51 block1pending0queued1elapsed3.125µs -# TestSmallTxPool/thread_5 2022/08/23 15:19:54 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:19:54 Case params: totalAccs = 1; totalTxs = 2; mean 22813, stdev 996, 22109-23518); queued mean 23518, stdev 0, 23518-23518); -# -# -v0.4.8#9786816392551465007 -0x0 -0x0 -0x0 -0x0 -0x1a87caf8e4478c -0x1 -0x1565b282855075 -0xe53d2e1c17601 -0x0 -0x1145734df5c495 -0x53 -0x1535a0dc1ded24 -0x455 -0xcd4139baed77d -0x1cd2cb5a2b5872 -0x0 -0x93e4c7381d1c0 -0x7 -0x1605a82f7cc117 -0x9d6 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823152452-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823152452-26736.fail deleted file mode 100644 index 618b36011b..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823152452-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:24:52 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:24:52 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140004fc6c0), (*core.testTx)(0x140004fc6f0)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:24:52 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending132.75µs -# TestSmallTxPool/thread_5 2022/08/23 15:24:52 block0pending2queued0elapsed132.75µs -# TestSmallTxPool/thread_5 2022/08/23 15:24:53 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.375µs -# TestSmallTxPool/thread_5 2022/08/23 15:24:53 block1pending0queued1elapsed2.375µs -# TestSmallTxPool/thread_5 2022/08/23 15:24:56 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:24:56 Case params: totalAccs = 1; totalTxs = 2; mean 217563, stdev 277980, 21001-414125); queued mean 414125, stdev 0, 414125-414125); -# -# -v0.4.8#3215678779435253768 -0x0 -0x0 -0x0 -0x0 -0x4ab445c8952dd -0x1 -0x1c9cb48dd732ea -0x18643b8063ce56 -0x0 -0x1dea69519594eb -0x276 -0x1df2a725281cf -0x1 -0x3f54fdc16882e -0x4d45042318b4c -0x0 -0x1d34e66caa4a4f -0x23b -0x1b8878766e6fab -0x5ffa5 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153135-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153135-26804.fail deleted file mode 100644 index 5de0ce0114..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153135-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:31:35 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:31:35 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140002a24b0), (*core.testTx)(0x140002a24e0)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:31:35 current_total2in_batch0removed1428emptyBlocks0blockGasLeft9144pending0locals1locals+pending127.459µs -# TestSmallTxPool/thread_5 2022/08/23 15:31:35 block0pending2queued0elapsed127.459µs -# TestSmallTxPool/thread_5 2022/08/23 15:31:36 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.667µs -# TestSmallTxPool/thread_5 2022/08/23 15:31:36 block1pending0queued1elapsed2.667µs -# TestSmallTxPool/thread_5 2022/08/23 15:31:39 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:31:39 Case params: totalAccs = 1; totalTxs = 2; mean 22882, stdev 2658, 21002-24762); queued mean 24762, stdev 0, 24762-24762); -# -# -v0.4.8#10709623101445898243 -0x0 -0x0 -0x0 -0x0 -0x18856cda8393b2 -0x1 -0xe68d9e09cae50 -0x15d32a92847dd -0x0 -0x1e77e07c659c4 -0x1 -0x4fd4f9918872f -0x2 -0xcfa1dd7a9cc02 -0x835794f203d69 -0x0 -0xb81012beffea8 -0x6 -0x1506d0f451864b -0xeb2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153613-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153613-26949.fail deleted file mode 100644 index 4820c3dc0d..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153613-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:36:13 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:36:13 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400074c6c0), (*core.testTx)(0x1400074c6f0)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:36:13 current_total2in_batch0removed257emptyBlocks0blockGasLeft109872pending0locals1locals+pending28.875µs -# TestSmallTxPool/thread_5 2022/08/23 15:36:13 block0pending2queued0elapsed28.875µs -# TestSmallTxPool/thread_5 2022/08/23 15:36:14 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending8µs -# TestSmallTxPool/thread_5 2022/08/23 15:36:14 block1pending0queued1elapsed8µs -# TestSmallTxPool/thread_5 2022/08/23 15:36:25 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:36:25 Case params: totalAccs = 1; totalTxs = 2; mean 202327, stdev 121654, 116304-288350); queued mean 288350, stdev 0, 288350-288350); -# -# -v0.4.8#13591903017304588300 -0x0 -0x10c52092b328d3 -0x0 -0x18d112784f0d77 -0x97a6dabb2abda -0x1 -0x140be23286f1b4 -0x128d978701af37 -0x0 -0x110e31b0aba338 -0x32 -0x18cfae3e0296b5 -0x17448 -0x18e1e3424a5df4 -0xf0a5d738fbf63 -0x0 -0x1edeb03accedbd -0x3c4 -0x1a61a26315c2bb -0x41456 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153947-27019.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153947-27019.fail deleted file mode 100644 index 6d94eabd9f..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823153947-27019.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:39:47 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:39:47 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140001fe4b0), (*core.testTx)(0x140001fe4e0)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:39:47 current_total2in_batch0removed2emptyBlocks0blockGasLeft313772pending0locals1locals+pending7.917µs -# TestSmallTxPool/thread_5 2022/08/23 15:39:47 block0pending2queued0elapsed7.917µs -# TestSmallTxPool/thread_5 2022/08/23 15:39:48 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.333µs -# TestSmallTxPool/thread_5 2022/08/23 15:39:48 block1pending0queued1elapsed1.333µs -# TestSmallTxPool/thread_5 2022/08/23 15:39:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:39:59 Case params: totalAccs = 1; totalTxs = 2; mean 13084932, stdev 2486444, 11326751-14843114); queued mean 11326751, stdev 0, 11326751-11326751); -# -# -v0.4.8#4213025642184179714 -0x0 -0x886ded9ddc3d3 -0x0 -0xb090687acddbe -0x15ddeaa77b47b2 -0x1 -0xe59f4d16f36ac -0x15c83731da8822 -0x0 -0x96869a15c64e3 -0x7 -0x1e3bd9acd056e0 -0xe22ae2 -0x14f771c7f4aeb4 -0x370b8c6f230a1 -0x0 -0x1a0afb8990daa0 -0x53 -0x1d1291819c4c33 -0xac8317 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154228-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154228-27072.fail deleted file mode 100644 index f2a0f6f095..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154228-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:42:28 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_5 2022/08/23 15:42:28 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140002a2a98), (*core.testTx)(0x140002a2ac8)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:42:28 current_total2in_batch0removed14emptyBlocks0blockGasLeft1202812pending0locals1locals+pending31.417µs -# TestSmallTxPool/thread_5 2022/08/23 15:42:28 block0pending2queued0elapsed31.417µs -# TestSmallTxPool/thread_5 2022/08/23 15:42:29 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending8.958µs -# TestSmallTxPool/thread_5 2022/08/23 15:42:29 block1pending0queued1elapsed8.958µs -# TestSmallTxPool/thread_5 2022/08/23 15:42:40 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:42:40 Case params: totalAccs = 2; totalTxs = 2; mean 1039912, stdev 1438296, 22883-2056942); queued mean 22883, stdev 0, 22883-22883); -# -# -v0.4.8#13827966136563531806 -0x0 -0x18ebc61699540b -0x1 -0x3515fdfcfb65f -0x25a50539918aa -0x1 -0x730d8876cc5b -0x1b3583a276c8b4 -0x0 -0x10713742c9f5d8 -0x7a -0x1ba16623654525 -0x1f10e6 -0xe7fe69f9d4105 -0x23766b0e6ef50 -0x0 -0xc75308e453b9e -0x11 -0x13d0c7e491064b -0x75b \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154450-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154450-27147.fail deleted file mode 100644 index 475c429185..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823154450-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 15:44:50 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 15:44:50 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006ac660), (*core.testTx)(0x140006ac690)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 15:44:50 current_total2in_batch0removed952emptyBlocks0blockGasLeft22472pending0locals1locals+pending78.333µs -# TestSmallTxPool/thread_5 2022/08/23 15:44:50 block0pending2queued0elapsed78.333µs -# TestSmallTxPool/thread_5 2022/08/23 15:44:51 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending4.041µs -# TestSmallTxPool/thread_5 2022/08/23 15:44:51 block1pending0queued1elapsed4.041µs -# TestSmallTxPool/thread_5 2022/08/23 15:45:02 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 15:45:02 Case params: totalAccs = 1; totalTxs = 2; mean 34693, stdev 4531, 31489-37898); queued mean 37898, stdev 0, 37898-37898); -# -# -v0.4.8#7017393923580493827 -0x0 -0x18a10e05463b9e -0x0 -0x5c2a53194d766 -0x1f60bafd023e1e -0xffffffffffffffff -0x84c50ea0684a9 -0x32563fc6544a5 -0x0 -0xaadb0d9aae81 -0x0 -0x1726c3520a1a4f -0x28f9 -0xcdba9dcba8304 -0x12f0f5a9b5d21 -0x0 -0x1ac8f20a9fedd2 -0x346 -0x1ea7cb7facaa18 -0x4202 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823191059-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823191059-29281.fail deleted file mode 100644 index 05a1435934..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220823191059-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000598d98), (*core.testTx)(0x14000598dc8)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 current_total2in_batch0removed1428emptyBlocks0blockGasLeft576pending0locals1locals+pending146.75µs -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 block0pending2queued0elapsed146.75µs -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.208µs -# TestSmallTxPool/thread_5 2022/08/23 19:10:59 block1pending0queued1elapsed1.208µs -# TestSmallTxPool/thread_5 2022/08/23 19:11:19 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/23 19:11:19 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21006, stdev 2, 21005-21008); queued mean 21005, stdev 0, 21005-21005); -# -# -v0.4.8#14400150647628365827 -0x41e06e2eff03 -0x101ec1bb9ad73f -0x0 -0x3fa750c7e2b81 -0x7bcc5b95d951f -0x1 -0xa8198da22acc9 -0x13eed06d067c7b -0x0 -0x1688314b1b7b9c -0xa0 -0x80150c493767d -0x8 -0x17494926911bb4 -0x2b32d10763d08 -0x0 -0xb143406fba05c -0x1 -0x84ce9ff98bfd7 -0x5 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220824134842-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220824134842-34401.fail deleted file mode 100644 index 089769b35e..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_5/TestSmallTxPool_thread_5-20220824134842-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400071c000), (*core.testTx)(0x1400071c030)}, totalTxs:2} -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending1locals0locals+pending250.667µs -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 block0pending2queued0elapsed250.667µs -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending2.208µs -# TestSmallTxPool/thread_5 2022/08/24 13:48:42 block1pending0queued1elapsed2.208µs -# TestSmallTxPool/thread_5 2022/08/24 13:49:02 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_5 2022/08/24 13:49:02 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 21009, stdev 12, 21000-21018); queued mean 21018, stdev 0, 21018-21018); -# -# -v0.4.8#974890162385321987 -0x0 -0xc791365e28aaa -0x1 -0x123cc263eba605 -0x161ad2377b422d -0x1 -0x106e8658abc238 -0x1f8377ef593cb5 -0xffffffffffffffff -0xf3caa6ecc1abf -0x26 -0xaafaa2be24a4 -0x0 -0x7397e7f193571 -0x1ddb7391916b1 -0x1 -0x1af767710b8b4d -0x293 -0xa8fd8e62367e5 -0x12 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151319-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151319-26278.fail deleted file mode 100644 index eb3dcba6a2..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151319-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:13:19 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:13:19 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000492c30), (*core.testTx)(0x14000492c60)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:13:19 current_total2in_batch0removed1423emptyBlocks0blockGasLeft18813pending0locals1locals+pending101.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:13:19 block0pending2queued0elapsed101.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:13:20 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending792ns -# TestSmallTxPool/thread_6 2022/08/23 15:13:20 block1pending0queued1elapsed792ns -# TestSmallTxPool/thread_6 2022/08/23 15:13:22 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:13:22 Case params: totalAccs = 1; totalTxs = 2; mean 21036, stdev 46, 21003-21069); queued mean 21003, stdev 0, 21003-21003); -# -# -v0.4.8#11031772208723656712 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0xa665b8ce9ee7a -0x48b0261ddad48 -0x0 -0x18614bfa6b5e23 -0x2b5 -0xdedad9b0c1b4e -0x45 -0x11ed04cc74b99a -0x4ae457ff37e53 -0x0 -0x12298dcc5e05bd -0x4f -0x655e79b9fdc45 -0x3 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151922-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151922-26429.fail deleted file mode 100644 index a2073e69ff..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823151922-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:19:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:19:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140004a2168), (*core.testTx)(0x140004a2198)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:19:22 current_total2in_batch0removed20emptyBlocks0blockGasLeft800540pending0locals1locals+pending6.375µs -# TestSmallTxPool/thread_6 2022/08/23 15:19:22 block0pending2queued0elapsed6.375µs -# TestSmallTxPool/thread_6 2022/08/23 15:19:23 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending375ns -# TestSmallTxPool/thread_6 2022/08/23 15:19:23 block1pending0queued1elapsed375ns -# TestSmallTxPool/thread_6 2022/08/23 15:19:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:19:26 Case params: totalAccs = 1; totalTxs = 2; mean 6707774, stdev 7421511, 1459973-11955575); queued mean 11955575, stdev 0, 11955575-11955575); -# -# -v0.4.8#9790467114753064968 -0x0 -0x0 -0x0 -0x0 -0x9d77731750978 -0x1 -0x49d11a9279512 -0x18cf4638816e07 -0x0 -0x952ae186dfdb -0x1 -0x1c5378ff68da43 -0x15f4fd -0x138b2c96ff1201 -0xdc5039ee78a54 -0x0 -0x79984ef15688a -0x0 -0x1c84f041fecb0e -0xb61b6f \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823152445-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823152445-26736.fail deleted file mode 100644 index 5e699fa210..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823152445-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:24:45 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:24:45 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140004a0318), (*core.testTx)(0x140004a0348)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:24:45 current_total2in_batch0removed858emptyBlocks0blockGasLeft1746pending0locals1locals+pending86.375µs -# TestSmallTxPool/thread_6 2022/08/23 15:24:45 block0pending2queued0elapsed86.375µs -# TestSmallTxPool/thread_6 2022/08/23 15:24:46 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending6.167µs -# TestSmallTxPool/thread_6 2022/08/23 15:24:46 block1pending0queued1elapsed6.167µs -# TestSmallTxPool/thread_6 2022/08/23 15:24:49 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:24:49 Case params: totalAccs = 1; totalTxs = 2; mean 27985, stdev 9868, 21007-34963); queued mean 21007, stdev 0, 21007-21007); -# -# -v0.4.8#3221876417243381771 -0x0 -0x0 -0x0 -0x0 -0x72ba92881feaf -0x1 -0x6d36251a10a8 -0x8b3f8873eb2d1 -0x0 -0xa757e295aa98d -0x3 -0x184fcc52ee8f8b -0x368b -0x1ecc59cfa7d2d5 -0x13fac3a09d77c4 -0x0 -0x19cb020b70dc60 -0x2f6 -0x5a00cefe27ec7 -0x7 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153135-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153135-26804.fail deleted file mode 100644 index 55fce4f7af..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153135-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:31:35 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:31:35 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006a2588), (*core.testTx)(0x140006a25b8)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:31:35 current_total2in_batch0removed1425emptyBlocks0blockGasLeft16575pending0locals1locals+pending132.333µs -# TestSmallTxPool/thread_6 2022/08/23 15:31:35 block0pending2queued0elapsed132.333µs -# TestSmallTxPool/thread_6 2022/08/23 15:31:36 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending5.708µs -# TestSmallTxPool/thread_6 2022/08/23 15:31:36 block1pending0queued1elapsed5.708µs -# TestSmallTxPool/thread_6 2022/08/23 15:31:39 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:31:39 Case params: totalAccs = 1; totalTxs = 2; mean 1099186, stdev 1524727, 21041-2177332); queued mean 2177332, stdev 0, 2177332-2177332); -# -# -v0.4.8#10712762722539274251 -0x0 -0x0 -0x0 -0x0 -0xd8dc93b6fee50 -0x1 -0x17158f721802db -0xbe370f54cb685 -0x0 -0x1ba844c50bd50a -0x228 -0xc67af9d2696f0 -0x29 -0x1a9347cfda4e00 -0x5bfc3b6608c09 -0x0 -0xa33bbb9af7c4c -0x8 -0x1c00e6e197dfb1 -0x20e72c \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153527-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153527-26949.fail deleted file mode 100644 index 64d0f1c5c8..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153527-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:35:27 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:35:27 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400074c078), (*core.testTx)(0x1400074c0a8)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:35:27 current_total2in_batch0removed1426emptyBlocks0blockGasLeft9794pending0locals1locals+pending47.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:35:27 block0pending2queued0elapsed47.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:35:28 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending6.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:35:28 block1pending0queued1elapsed6.042µs -# TestSmallTxPool/thread_6 2022/08/23 15:35:39 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:35:39 Case params: totalAccs = 1; totalTxs = 2; mean 21028, stdev 4, 21025-21031); queued mean 21025, stdev 0, 21025-21025); -# -# -v0.4.8#13596717675643404298 -0x0 -0x10f9ba5935c0f3 -0x0 -0x1d8080a56291f0 -0xe8aecc686552 -0x1 -0xc9b4a1b1b2453 -0xbd01817778a17 -0x0 -0x165953f5b0522b -0x344 -0xe6cf1e79a2767 -0x1f -0x3c7bacce9e988 -0x346cb90a1cb8f -0x0 -0x458c3f4212555 -0x2 -0xbe02443654594 -0x19 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153947-27019.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153947-27019.fail deleted file mode 100644 index eee6ff02d3..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823153947-27019.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:39:47 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:39:47 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400054a210), (*core.testTx)(0x1400054a240)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:39:47 current_total2in_batch0removed1428emptyBlocks0blockGasLeft7716pending0locals1locals+pending84.292µs -# TestSmallTxPool/thread_6 2022/08/23 15:39:47 block0pending2queued0elapsed84.292µs -# TestSmallTxPool/thread_6 2022/08/23 15:39:48 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.084µs -# TestSmallTxPool/thread_6 2022/08/23 15:39:48 block1pending0queued1elapsed1.084µs -# TestSmallTxPool/thread_6 2022/08/23 15:39:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:39:59 Case params: totalAccs = 1; totalTxs = 2; mean 22125, stdev 1587, 21003-23248); queued mean 23248, stdev 0, 23248-23248); -# -# -v0.4.8#4215430823869939720 -0x0 -0xc7f1bbb044e09 -0x0 -0x921c9b6d9f6a5 -0x131a3ad8ae80bf -0x1 -0x65130329290f0 -0x1714e0e4c1864f -0x0 -0xe621efe42c9a -0x1 -0x65788d7742427 -0x3 -0x805be6221990e -0xc67b9b0191dce -0x0 -0x7fd821163f02b -0x3 -0x152508e1625b50 -0x8c8 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154119-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154119-27072.fail deleted file mode 100644 index 71e14f5e99..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154119-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:41:19 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/23 15:41:19 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000eb40), (*core.testTx)(0x1400044a570)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:41:19 current_total2in_batch0removed1400emptyBlocks0blockGasLeft19000pending0locals1locals+pending251.125µs -# TestSmallTxPool/thread_6 2022/08/23 15:41:19 block0pending2queued0elapsed251.125µs -# TestSmallTxPool/thread_6 2022/08/23 15:41:20 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending4.125µs -# TestSmallTxPool/thread_6 2022/08/23 15:41:20 block1pending0queued1elapsed4.125µs -# TestSmallTxPool/thread_6 2022/08/23 15:41:31 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:41:31 Case params: totalAccs = 1; totalTxs = 2; mean 21211, stdev 288, 21007-21415); queued mean 21007, stdev 0, 21007-21007); -# -# -v0.4.8#13830057785636683785 -0x0 -0xc4ac769c6cc6b -0x0 -0x2f4d801a61576 -0x1cf5bd69509277 -0x1 -0x1dadc2bc86ce50 -0x6a06e318fcacf -0x0 -0xa96a69d6ef392 -0x0 -0x1283093cae8e40 -0x19f -0x67dfaa5c45841 -0x53837dda5c9d3 -0x0 -0x1735501b3b4b04 -0x319 -0xa2450867b183c -0x7 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154439-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154439-27147.fail deleted file mode 100644 index fe5549a3f4..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823154439-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 15:44:39 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_6 2022/08/23 15:44:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400077e1c8), (*core.testTx)(0x1400077e1f8)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 15:44:39 current_total2in_batch0removed1428emptyBlocks0blockGasLeft6288pending0locals1locals+pending170µs -# TestSmallTxPool/thread_6 2022/08/23 15:44:39 block0pending2queued0elapsed170µs -# TestSmallTxPool/thread_6 2022/08/23 15:44:40 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.5µs -# TestSmallTxPool/thread_6 2022/08/23 15:44:40 block1pending0queued1elapsed2.5µs -# TestSmallTxPool/thread_6 2022/08/23 15:44:51 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 15:44:51 Case params: totalAccs = 2; totalTxs = 2; mean 21053, stdev 70, 21004-21103); queued mean 21103, stdev 0, 21103-21103); -# -# -v0.4.8#7023806309753421834 -0x0 -0x9e4f326d9764e -0x1 -0x14a64a84433af9 -0x176e74d4f16433 -0x1 -0x8fb67607f013c -0x16f382278b92ba -0x0 -0x16f47192cf271 -0x0 -0xbe0140ac97400 -0x4 -0x149ad43abcb6e4 -0x1d7a6333eb7fc -0x0 -0x1047f0aa1ca1d4 -0x3d -0x12530c5d1971be -0x67 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823191039-29281.fail deleted file mode 100644 index 5dc2d480b1..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000694270), (*core.testTx)(0x140006942a0)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending1locals0locals+pending93.5µs -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 block0pending2queued0elapsed93.5µs -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending1.041µs -# TestSmallTxPool/thread_6 2022/08/23 19:10:39 block1pending0queued1elapsed1.041µs -# TestSmallTxPool/thread_6 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/23 19:10:59 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 7510500, stdev 10591752, 21000-15000000); queued mean 15000000, stdev 0, 15000000-15000000); -# -# -v0.4.8#14401245864288845828 -0x0 -0x982317390d86c -0x1 -0xa6dd8cab73e91 -0x24bf66dd8d752 -0x1 -0x1f586786eee054 -0x1f9b20da876313 -0xffffffffffffffff -0x65d36221e54d2 -0x2 -0x2216e7114148a -0x0 -0x991387d7f03aa -0x1b5adbd5fcd502 -0x1 -0x3bfb55892bbeb -0x1 -0x1fcfc5c3ffdac8 -0xffffffffffffffff \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220824134822-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220824134822-34401.fail deleted file mode 100644 index c4c8b42923..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_6/TestSmallTxPool_thread_6-20220824134822-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000292f48), (*core.testTx)(0x14000292f78)}, totalTxs:2} -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 current_total2in_batch0removed487emptyBlocks0blockGasLeft4209pending0locals1locals+pending41.791µs -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 block0pending2queued0elapsed41.791µs -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending958ns -# TestSmallTxPool/thread_6 2022/08/24 13:48:22 block1pending0queued1elapsed958ns -# TestSmallTxPool/thread_6 2022/08/24 13:48:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_6 2022/08/24 13:48:42 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 41297, stdev 28702, 21002-61593); queued mean 21002, stdev 0, 21002-21002); -# -# -v0.4.8#976913091981737989 -0x7467e504bb020 -0x1bbefdc2f4de1a -0x0 -0x1a60eec7505ba5 -0xfaf48441b1019 -0x1 -0x1b2f7c9c3f36d1 -0xda4f43199f629 -0x0 -0x1e65f8fe5220bb -0x8c -0x1846e35a55981d -0x9e91 -0xfd21b3b77ccb7 -0x8558bdb36a7b8 -0x0 -0x4da45d29eb8f7 -0x3 -0xafc9539d67e44 -0x2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151326-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151326-26278.fail deleted file mode 100644 index 1c12350b50..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151326-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:13:26 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 15:13:26 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000492228), (*core.testTx)(0x14000492258)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:13:26 current_total2in_batch0removed1377emptyBlocks0blockGasLeft13071pending0locals1locals+pending83.791µs -# TestSmallTxPool/thread_7 2022/08/23 15:13:26 block0pending2queued0elapsed83.791µs -# TestSmallTxPool/thread_7 2022/08/23 15:13:27 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending916ns -# TestSmallTxPool/thread_7 2022/08/23 15:13:27 block1pending0queued1elapsed916ns -# TestSmallTxPool/thread_7 2022/08/23 15:13:29 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:13:29 Case params: totalAccs = 1; totalTxs = 2; mean 21407, stdev 523, 21037-21777); queued mean 21037, stdev 0, 21037-21037); -# -# -v0.4.8#11030676992063176715 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x6d61c4b233fd7 -0x1ee09d12b6d7ea -0x0 -0x1fb2706cea1d06 -0xffffffffffffffff -0x12e4b3d2d9e5a0 -0x309 -0x1da5e4cb2ddff1 -0xd3f84374a1281 -0x0 -0x8975e64dc3af -0x1 -0xfade341836a2f -0x25 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151922-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151922-26429.fail deleted file mode 100644 index 84f5621a76..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823151922-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:19:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 15:19:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400030c1e0), (*core.testTx)(0x1400030c210)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:19:22 current_total2in_batch0removed1426emptyBlocks0blockGasLeft16924pending0locals1locals+pending47.333µs -# TestSmallTxPool/thread_7 2022/08/23 15:19:22 block0pending2queued0elapsed47.333µs -# TestSmallTxPool/thread_7 2022/08/23 15:19:23 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.625µs -# TestSmallTxPool/thread_7 2022/08/23 15:19:23 block1pending0queued1elapsed2.625µs -# TestSmallTxPool/thread_7 2022/08/23 15:19:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:19:26 Case params: totalAccs = 1; totalTxs = 2; mean 21019, stdev 9, 21012-21026); queued mean 21012, stdev 0, 21012-21012); -# -# -v0.4.8#9789706905541672967 -0x0 -0x0 -0x0 -0x0 -0x1181c27e592eb7 -0x1 -0xf8ed910a75ad0 -0x17733ae9f06aaa -0x0 -0x9950476f619a2 -0x0 -0xb48b178d7bd6d -0x1a -0x48cd4b6405315 -0x120f8211813dab -0x0 -0xe5e3279da958c -0x13 -0x9b58fc394ec66 -0xc \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823152442-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823152442-26736.fail deleted file mode 100644 index 4a2c568d10..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823152442-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:24:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 15:24:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400029ef90), (*core.testTx)(0x1400029efc0)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:24:42 current_total2in_batch0removed14emptyBlocks0blockGasLeft500684pending0locals1locals+pending10.709µs -# TestSmallTxPool/thread_7 2022/08/23 15:24:42 block0pending2queued0elapsed10.709µs -# TestSmallTxPool/thread_7 2022/08/23 15:24:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending8.333µs -# TestSmallTxPool/thread_7 2022/08/23 15:24:43 block1pending0queued1elapsed8.333µs -# TestSmallTxPool/thread_7 2022/08/23 15:24:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:24:46 Case params: totalAccs = 1; totalTxs = 2; mean 1065151, stdev 1473529, 23209-2107094); queued mean 23209, stdev 0, 23209-23209); -# -# -v0.4.8#3217912162429173764 -0x0 -0x0 -0x0 -0x0 -0x165dbd1d2573d8 -0x1 -0x11fe93eea8a3cc -0x3c5ccc5301338 -0x0 -0x1bf15f05e5cbbd -0x266 -0x1c1bb6814596c5 -0x1fd4ce -0xd4d8ef6876b52 -0xcbe18e8bedf70 -0x0 -0xe23a85732e216 -0x2e -0x15e6ee62cb5b65 -0x8a1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153132-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153132-26804.fail deleted file mode 100644 index f1578d2f87..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153132-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:31:32 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 15:31:32 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140006224b0), (*core.testTx)(0x140006224e0)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:31:32 current_total2in_batch0removed695emptyBlocks0blockGasLeft1715pending0locals1locals+pending76.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:31:32 block0pending2queued0elapsed76.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:31:33 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.459µs -# TestSmallTxPool/thread_7 2022/08/23 15:31:33 block1pending0queued1elapsed2.459µs -# TestSmallTxPool/thread_7 2022/08/23 15:31:36 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:31:36 Case params: totalAccs = 1; totalTxs = 2; mean 221663, stdev 252437, 43163-400163); queued mean 400163, stdev 0, 400163-400163); -# -# -v0.4.8#10710181447194378248 -0x0 -0x0 -0x0 -0xab652d62e2f2f -0x3b78fb921afae -0x1 -0x12ea9776fc2c90 -0xcff26ef4ad02b -0x0 -0x170f7b16443a90 -0x1a2 -0x17d9ce69f1fc0c -0x5693 -0x1c53f3ec424aab -0x172492bab35aa4 -0x0 -0x1287f2c400e3d3 -0x70 -0x1a9ab8ad140142 -0x5c91b \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153527-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153527-26949.fail deleted file mode 100644 index 2f67aa39fc..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823153527-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:35:27 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_7 2022/08/23 15:35:27 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140005beb28), (*core.testTx)(0x140005beb58)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:35:27 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending72.75µs -# TestSmallTxPool/thread_7 2022/08/23 15:35:27 block0pending2queued0elapsed72.75µs -# TestSmallTxPool/thread_7 2022/08/23 15:35:28 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending7.875µs -# TestSmallTxPool/thread_7 2022/08/23 15:35:28 block1pending0queued1elapsed7.875µs -# TestSmallTxPool/thread_7 2022/08/23 15:35:39 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:35:39 Case params: totalAccs = 2; totalTxs = 2; mean 21293, stdev 415, 21000-21587); queued mean 21587, stdev 0, 21587-21587); -# -# -v0.4.8#13594647501406732294 -0x0 -0x17013be5bd4638 -0x1 -0x1b916a8918989e -0x19ef6bb9b962cd -0x1 -0x1ecceb3ff99031 -0x1442f177f60f7d -0x0 -0x115af00b572496 -0x66 -0x2b00d4f690d99 -0x0 -0x1e53dd8a0a9a31 -0x9e64e0fcf9b87 -0x0 -0x34d31b139c9aa -0x1 -0x14d2bd76fb8736 -0x24b \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154120-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154120-27072.fail deleted file mode 100644 index 57a1a9eb6f..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154120-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:41:20 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_7 2022/08/23 15:41:20 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400071cee8), (*core.testTx)(0x1400071cf18)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:41:20 current_total2in_batch0removed82emptyBlocks0blockGasLeft199068pending0locals1locals+pending13.541µs -# TestSmallTxPool/thread_7 2022/08/23 15:41:20 block0pending2queued0elapsed13.541µs -# TestSmallTxPool/thread_7 2022/08/23 15:41:21 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending2.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:41:21 block1pending0queued1elapsed2.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:41:32 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:41:32 Case params: totalAccs = 2; totalTxs = 2; mean 208233, stdev 219476, 53040-363426); queued mean 53040, stdev 0, 53040-53040); -# -# -v0.4.8#13829885986944843785 -0x0 -0x3cd5efc5beb20 -0x1 -0x126e846bbeb792 -0x3f568f35d295 -0x1 -0x99f8746072d2e -0xa7b753df7faed -0x0 -0x17db06622bba06 -0x1e2 -0x1a1f455df64966 -0x5399a -0x9198d3efc08e8 -0xaf8ec654dc886 -0x0 -0x19e19a05d6a282 -0x22 -0x18677e4257f2be -0x7d28 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154439-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154439-27147.fail deleted file mode 100644 index bacdb06026..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823154439-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 15:44:39 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 15:44:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000090540), (*core.testTx)(0x14000090588)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 15:44:39 current_total2in_batch0removed1428emptyBlocks0blockGasLeft4860pending0locals1locals+pending176.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:44:39 block0pending2queued0elapsed176.833µs -# TestSmallTxPool/thread_7 2022/08/23 15:44:40 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending4.5µs -# TestSmallTxPool/thread_7 2022/08/23 15:44:40 block1pending0queued1elapsed4.5µs -# TestSmallTxPool/thread_7 2022/08/23 15:44:51 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 15:44:51 Case params: totalAccs = 1; totalTxs = 2; mean 21004, stdev 1, 21003-21005); queued mean 21003, stdev 0, 21003-21003); -# -# -v0.4.8#7018871392330317830 -0x0 -0xbf453a2a51f32 -0x0 -0x288e857a421fd -0xae4ef8520bb43 -0x1 -0x1387bd670dbc3e -0x1c267e18a1e634 -0x0 -0x4d0fe7b60e0a8 -0x0 -0xb09bbf71a26cc -0x5 -0x6554ebc424ed2 -0xd95d67e65da27 -0x0 -0x169ed9f04eeff7 -0x283 -0x3842b825fe59e -0x3 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823191039-29281.fail deleted file mode 100644 index 1c973a617b..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400061cc78), (*core.testTx)(0x1400061cca8)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 current_total2in_batch0removed3emptyBlocks0blockGasLeft860145pending0locals1locals+pending9.125µs -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 block0pending2queued0elapsed9.125µs -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending708ns -# TestSmallTxPool/thread_7 2022/08/23 19:10:39 block1pending0queued1elapsed708ns -# TestSmallTxPool/thread_7 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/23 19:10:59 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 4901984, stdev 6804207, 90683-9713285); queued mean 90683, stdev 0, 90683-90683); -# -# -v0.4.8#14402869361926733832 -0xd38dbba1b30f8 -0x1117ffde8353b7 -0x0 -0x6f3639ba590a3 -0xda1a403685b4c -0x1 -0x103986318c46d2 -0x92e7dacea3ff3 -0x0 -0xc4374bd3ba544 -0x11 -0x1d40c26a26b460 -0x93e47d -0xa544fadc65888 -0xd2f70d1ce6424 -0x0 -0xc56cb071eee0 -0x0 -0x19388ca8e3722a -0x11033 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220824134902-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220824134902-34401.fail deleted file mode 100644 index 7671261f2a..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_7/TestSmallTxPool_thread_7-20220824134902-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400032a210), (*core.testTx)(0x1400032a258)}, totalTxs:2} -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending51.292µs -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 block0pending2queued0elapsed51.292µs -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending375ns -# TestSmallTxPool/thread_7 2022/08/24 13:49:02 block1pending0queued1elapsed375ns -# TestSmallTxPool/thread_7 2022/08/24 13:49:22 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_7 2022/08/24 13:49:22 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21000, stdev 0, 21000-21000); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#976852962439593991 -0x802e04596a284 -0x879b25720f5f6 -0x0 -0xbd824f2fddba7 -0x1f302fdcfb828c -0xffffffffffffffff -0x1c17cd60144e38 -0x6bc153badc396 -0x0 -0x1efa9791b90ed9 -0xb2 -0x109e30055c5d0 -0x0 -0x53a2afd336217 -0x153fdd2b772ce6 -0x0 -0xf94a56a5dc25d -0xe -0x339321ec41aea -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151321-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151321-26278.fail deleted file mode 100644 index 3f1c4710ef..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151321-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:13:21 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 15:13:21 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400080a0d8), (*core.testTx)(0x1400080a108)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:13:21 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending140.5µs -# TestSmallTxPool/thread_8 2022/08/23 15:13:21 block0pending2queued0elapsed140.5µs -# TestSmallTxPool/thread_8 2022/08/23 15:13:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.083µs -# TestSmallTxPool/thread_8 2022/08/23 15:13:22 block1pending0queued1elapsed1.083µs -# TestSmallTxPool/thread_8 2022/08/23 15:13:24 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:13:24 Case params: totalAccs = 1; totalTxs = 2; mean 22689, stdev 2389, 21000-24379); queued mean 24379, stdev 0, 24379-24379); -# -# -v0.4.8#11032777231070920715 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x345dcf2914dbf -0x1b7e5ab75db7e -0x0 -0x182f922a08f0ec -0x2ef -0x271589911586b -0x0 -0xf45a99032a4a6 -0x59e979e595906 -0x0 -0x1f6d8c96f2064b -0xffffffffffffffff -0x1812eac6f3e9f2 -0xd33 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151934-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151934-26429.fail deleted file mode 100644 index 4d3f92b7f3..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823151934-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:19:34 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 15:19:34 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400035e900), (*core.testTx)(0x1400035e930)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:19:34 current_total2in_batch0removed24emptyBlocks0blockGasLeft981216pending0locals1locals+pending7.667µs -# TestSmallTxPool/thread_8 2022/08/23 15:19:34 block0pending2queued0elapsed7.667µs -# TestSmallTxPool/thread_8 2022/08/23 15:19:35 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:19:35 block1pending0queued1elapsed3.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:19:38 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:19:38 Case params: totalAccs = 1; totalTxs = 2; mean 615491, stdev 839511, 21867-1209116); queued mean 21867, stdev 0, 21867-21867); -# -# -v0.4.8#9788036163263528973 -0x0 -0x0 -0x0 -0xeb2a11c14ef0 -0xa02661e61f5ff -0x1 -0x11f3e4cb4d9b1 -0x1353756f7688a0 -0x0 -0x295411e8beea -0x0 -0x1b52ea4e101960 -0x122114 -0x3b9b5916b3cd2 -0x26ae504059417 -0x0 -0xde02829e5fbf1 -0x2 -0x155b17f4dfa5bd -0x363 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823152442-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823152442-26736.fail deleted file mode 100644 index 3c6c2b3bca..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823152442-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:24:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 15:24:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400009ed98), (*core.testTx)(0x1400009edc8)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:24:42 current_total2in_batch0removed1428emptyBlocks0blockGasLeft9144pending0locals1locals+pending113.834µs -# TestSmallTxPool/thread_8 2022/08/23 15:24:42 block0pending2queued0elapsed113.834µs -# TestSmallTxPool/thread_8 2022/08/23 15:24:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending3.375µs -# TestSmallTxPool/thread_8 2022/08/23 15:24:43 block1pending0queued1elapsed3.375µs -# TestSmallTxPool/thread_8 2022/08/23 15:24:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:24:46 Case params: totalAccs = 1; totalTxs = 2; mean 21001, stdev 1, 21000-21002); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#3217821968115957763 -0x0 -0x0 -0x0 -0x0 -0x155c7ee09aac69 -0x1 -0xd3e60531884df -0xfbb7315aa8d5f -0x0 -0x6b6061beac13a -0x1 -0x55e99f9f61d9e -0x2 -0x103ec8ecf9c7a4 -0x10485af952d748 -0x0 -0xfdf0899295bf1 -0x4a -0x13d975340e3d2 -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153132-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153132-26804.fail deleted file mode 100644 index 17f475e4ca..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153132-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:31:32 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 15:31:32 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000ecd8), (*core.testTx)(0x1400000ed08)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:31:32 current_total2in_batch0removed1427emptyBlocks0blockGasLeft18730pending0locals1locals+pending194µs -# TestSmallTxPool/thread_8 2022/08/23 15:31:32 block0pending2queued0elapsed194µs -# TestSmallTxPool/thread_8 2022/08/23 15:31:33 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.958µs -# TestSmallTxPool/thread_8 2022/08/23 15:31:33 block1pending0queued1elapsed1.958µs -# TestSmallTxPool/thread_8 2022/08/23 15:31:36 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:31:36 Case params: totalAccs = 1; totalTxs = 2; mean 21008, stdev 2, 21006-21010); queued mean 21006, stdev 0, 21006-21006); -# -# -v0.4.8#10709653166216970243 -0x0 -0x0 -0x0 -0x171dd573a00568 -0x14a625302ba3ac -0x1 -0x1da0e0f7d450c7 -0x1ee709239566ed -0x0 -0x1d709d2f8d4afd -0x3b9 -0xb009a04573662 -0xa -0xf233264233d7e -0x4f7bdb9559a0 -0x0 -0x3e31356540400 -0x1 -0x637311d3efdd4 -0x6 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153538-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153538-26949.fail deleted file mode 100644 index 3a6d99a93c..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153538-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:35:38 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 15:35:38 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400074ca68), (*core.testTx)(0x1400074ca98)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:35:38 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending79.292µs -# TestSmallTxPool/thread_8 2022/08/23 15:35:38 block0pending2queued0elapsed79.292µs -# TestSmallTxPool/thread_8 2022/08/23 15:35:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:35:39 block1pending0queued1elapsed1.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:35:50 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:35:50 Case params: totalAccs = 1; totalTxs = 2; mean 21004, stdev 6, 21000-21009); queued mean 21009, stdev 0, 21009-21009); -# -# -v0.4.8#13595605279113740298 -0x0 -0xc7cb6bcbb5898 -0x0 -0xa9281d9febfc4 -0x32df124504cdb -0x1 -0x90f75146d837b -0x569c884b93924 -0x0 -0x62aa9ebc22037 -0x0 -0xefd12e56feec -0x0 -0x4109492e3df78 -0x17c95ca5659a2d -0x0 -0x17165ffdbb5b2b -0x1e8 -0x921bc31d61f6e -0x9 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153949-27019.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153949-27019.fail deleted file mode 100644 index 567c43f069..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823153949-27019.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:39:49 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_8 2022/08/23 15:39:49 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140000a6870), (*core.testTx)(0x140000a68a0)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:39:49 current_total2in_batch0removed1416emptyBlocks0blockGasLeft19032pending1locals0locals+pending120.583µs -# TestSmallTxPool/thread_8 2022/08/23 15:39:49 block0pending2queued0elapsed120.583µs -# TestSmallTxPool/thread_8 2022/08/23 15:39:50 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending9.417µs -# TestSmallTxPool/thread_8 2022/08/23 15:39:50 block1pending0queued1elapsed9.417µs -# TestSmallTxPool/thread_8 2022/08/23 15:40:01 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:40:01 Case params: totalAccs = 2; totalTxs = 2; mean 369641, stdev 492808, 21173-718109); queued mean 718109, stdev 0, 718109-718109); -# -# -v0.4.8#4214833823415795717 -0x0 -0x0 -0x1 -0x3b2fbcdb31af2 -0x1195295c8f1a5b -0x1 -0x2fe48eaec309 -0x1c5bf98e7b5b39 -0x1 -0x1a88d0727ea6e8 -0x7e -0x1010e8fe68c875 -0xad -0x6cee600f6e704 -0x3a6915119e048 -0x1 -0x160e3984feb1f1 -0x6b -0x1ad0f98bc41d43 -0xaa315 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154144-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154144-27072.fail deleted file mode 100644 index 40d6c7421b..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154144-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:41:44 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_8 2022/08/23 15:41:44 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000eb88), (*core.testTx)(0x1400000ebb8)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:41:44 current_total2in_batch0removed270emptyBlocks0blockGasLeft8400pending1locals0locals+pending311.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:41:44 block0pending2queued0elapsed311.875µs -# TestSmallTxPool/thread_8 2022/08/23 15:41:45 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending19.458µs -# TestSmallTxPool/thread_8 2022/08/23 15:41:45 block1pending0queued1elapsed19.458µs -# TestSmallTxPool/thread_8 2022/08/23 15:41:56 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:41:56 Case params: totalAccs = 2; totalTxs = 2; mean 69884, stdev 58259, 28689-111080); queued mean 28689, stdev 0, 28689-28689); -# -# -v0.4.8#13830057785636683789 -0x0 -0x0 -0x1 -0x81c22fe5af806 -0x1a4aa24c06b5c7 -0x1 -0x1681e5de302cbe -0x1dc53b29e06e49 -0x1 -0xd39481c3d1b0f -0x8 -0x1a6d31fffbdc70 -0x15fe0 -0x1de8b8d9033596 -0xab66236225865 -0x1 -0x1ea1258485892e -0x4e -0x1613f4e18de883 -0x1e09 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154452-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154452-27147.fail deleted file mode 100644 index 5aff53070b..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823154452-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 15:44:52 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_8 2022/08/23 15:44:52 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000091038), (*core.testTx)(0x14000091068)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 15:44:52 current_total2in_batch0removed1422emptyBlocks0blockGasLeft1488pending1locals0locals+pending116.292µs -# TestSmallTxPool/thread_8 2022/08/23 15:44:52 block0pending2queued0elapsed116.292µs -# TestSmallTxPool/thread_8 2022/08/23 15:44:53 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending22.417µs -# TestSmallTxPool/thread_8 2022/08/23 15:44:53 block1pending0queued1elapsed22.417µs -# TestSmallTxPool/thread_8 2022/08/23 15:45:04 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 15:45:04 Case params: totalAccs = 2; totalTxs = 2; mean 4961071, stdev 6986180, 21096-9901047); queued mean 9901047, stdev 0, 9901047-9901047); -# -# -v0.4.8#7019623011607117833 -0x0 -0x0 -0x1 -0x5640ce5bd403b -0x717dad7212753 -0x1 -0xf7ab1f6f9d83d -0x18c8165aeea6a2 -0x1 -0xc4f091bd71a31 -0x2 -0xf4fb81595bdf6 -0x60 -0x86b478024a75c -0x319a0c4562464 -0x1 -0x1f69edbce3e341 -0xffffffffffffffff -0x1efa9c0926979b -0x96c1ef \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823191039-29281.fail deleted file mode 100644 index d6b441534e..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400043c168), (*core.testTx)(0x1400043c198)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 current_total2in_batch0removed1428emptyBlocks0blockGasLeft9144pending0locals1locals+pending106.917µs -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 block0pending2queued0elapsed106.917µs -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending750ns -# TestSmallTxPool/thread_8 2022/08/23 19:10:39 block1pending0queued1elapsed750ns -# TestSmallTxPool/thread_8 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/23 19:10:59 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 25890, stdev 6912, 21002-30778); queued mean 30778, stdev 0, 30778-30778); -# -# -v0.4.8#14401756965397069830 -0x1a60522acea424 -0x1ee84a80ecf238 -0x0 -0x10e07d5033e99c -0x1563b7e701c002 -0x1 -0x7705c83677388 -0x1e9fe5248e890f -0x0 -0x159a95d2f3db5d -0x140 -0x5676cea41eaa5 -0x2 -0x2c4937976036e -0x2b01932ecca9a -0x0 -0xdb0d508f1645e -0x14 -0x16bf5edfa9a367 -0x2632 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220824134822-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220824134822-34401.fail deleted file mode 100644 index 7644a1ac16..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_8/TestSmallTxPool_thread_8-20220824134822-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400071c6f0), (*core.testTx)(0x1400071c720)}, totalTxs:2} -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 current_total2in_batch0removed1426emptyBlocks0blockGasLeft19776pending0locals1locals+pending117.75µs -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 block0pending2queued0elapsed117.75µs -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending792ns -# TestSmallTxPool/thread_8 2022/08/24 13:48:22 block1pending0queued1elapsed792ns -# TestSmallTxPool/thread_8 2022/08/24 13:48:42 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_8 2022/08/24 13:48:42 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21075, stdev 72, 21024-21127); queued mean 21127, stdev 0, 21127-21127); -# -# -v0.4.8#976560904663465987 -0x1265400b645eed -0x1d5dfc2ec6e6dc -0x0 -0x1921bc567ca956 -0x14f2e61cf301db -0x1 -0xbac1802d9b04e -0x1886d7317bff96 -0x0 -0x8595a57a51773 -0x5 -0xa048ff9a1c125 -0x18 -0x1dc7407254e04f -0xc7a3308e8e14d -0x0 -0x59da6901d35b5 -0x2 -0xf2ef1d157f9a2 -0x7f \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151323-26278.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151323-26278.fail deleted file mode 100644 index dcd7d989d9..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151323-26278.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:13:23 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:13:23 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140001beb88), (*core.testTx)(0x140009ce000)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:13:23 current_total2in_batch0removed1426emptyBlocks0blockGasLeft15498pending0locals1locals+pending84.583µs -# TestSmallTxPool/thread_9 2022/08/23 15:13:23 block0pending2queued0elapsed84.583µs -# TestSmallTxPool/thread_9 2022/08/23 15:13:24 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending6µs -# TestSmallTxPool/thread_9 2022/08/23 15:13:24 block1pending0queued1elapsed6µs -# TestSmallTxPool/thread_9 2022/08/23 15:13:26 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:13:26 Case params: totalAccs = 1; totalTxs = 2; mean 21014, stdev 17, 21002-21027); queued mean 21002, stdev 0, 21002-21002); -# -# -v0.4.8#11030350574548680709 -0x0 -0x0 -0x0 -0x0 -0x0 -0x1 -0x683c5cf501d28 -0x1d65028e9506eb -0x0 -0x6288365a58a73 -0x2 -0xb135d910a2175 -0x1b -0x42b6b1a7b8fa8 -0xe505e4078f38b -0x0 -0x194b700daddacb -0x2a8 -0x38db165f85938 -0x2 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151931-26429.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151931-26429.fail deleted file mode 100644 index b58dd88776..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823151931-26429.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:19:31 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:19:31 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400035e618), (*core.testTx)(0x1400035e648)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:19:31 current_total2in_batch0removed1428emptyBlocks0blockGasLeft12000pending0locals1locals+pending145.209µs -# TestSmallTxPool/thread_9 2022/08/23 15:19:31 block0pending2queued0elapsed145.209µs -# TestSmallTxPool/thread_9 2022/08/23 15:19:32 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending1.291µs -# TestSmallTxPool/thread_9 2022/08/23 15:19:32 block1pending0queued1elapsed1.291µs -# TestSmallTxPool/thread_9 2022/08/23 15:19:35 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:19:35 Case params: totalAccs = 1; totalTxs = 2; mean 151141, stdev 184047, 21000-281282); queued mean 281282, stdev 0, 281282-281282); -# -# -v0.4.8#9788461365025832967 -0x0 -0x0 -0x0 -0x0 -0x1a29b2e97cda8a -0x1 -0x1e68b506bb4dc5 -0x27c6f0363ab21 -0x0 -0x3f0ef15dd2bc1 -0x0 -0x2f37f975c5086 -0x0 -0x1225dddc423c41 -0x1e61028c020c3b -0x0 -0x1bec890e6c856a -0x38d -0x19ebef0a0ef8da -0x3f8ba \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823152442-26736.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823152442-26736.fail deleted file mode 100644 index d1c21cc1d4..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823152442-26736.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:24:42 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:24:42 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400029ec30), (*core.testTx)(0x1400029ec60)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:24:42 current_total2in_batch0removed1427emptyBlocks0blockGasLeft179pending0locals1locals+pending113.792µs -# TestSmallTxPool/thread_9 2022/08/23 15:24:42 block0pending2queued0elapsed113.792µs -# TestSmallTxPool/thread_9 2022/08/23 15:24:43 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending13.25µs -# TestSmallTxPool/thread_9 2022/08/23 15:24:43 block1pending0queued1elapsed13.25µs -# TestSmallTxPool/thread_9 2022/08/23 15:24:46 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:24:46 Case params: totalAccs = 1; totalTxs = 2; mean 21127, stdev 147, 21023-21232); queued mean 21232, stdev 0, 21232-21232); -# -# -v0.4.8#3217967997004021765 -0x0 -0x0 -0x0 -0x0 -0x15feb004f9652d -0x1 -0x648dea38b11d1 -0xab5232a16d730 -0x0 -0x1c58a16a564491 -0x376 -0xd69ba5e4330ed -0x17 -0xb5da7b09af201 -0x1d19f3bdad59af -0x0 -0x17a145a5517a07 -0x6d -0x12f091db0ae022 -0xe8 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153133-26804.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153133-26804.fail deleted file mode 100644 index af982d58d3..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153133-26804.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:31:33 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:31:33 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000622cc0), (*core.testTx)(0x14000622cf0)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:31:33 current_total2in_batch0removed1427emptyBlocks0blockGasLeft13022pending0locals1locals+pending142.375µs -# TestSmallTxPool/thread_9 2022/08/23 15:31:33 block0pending2queued0elapsed142.375µs -# TestSmallTxPool/thread_9 2022/08/23 15:31:34 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending144.542µs -# TestSmallTxPool/thread_9 2022/08/23 15:31:34 block1pending0queued1elapsed144.542µs -# TestSmallTxPool/thread_9 2022/08/23 15:31:37 got 2 block timeout in a row(expected less then 1s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:31:37 Case params: totalAccs = 1; totalTxs = 2; mean 7510507, stdev 10591742, 21014-15000000); queued mean 15000000, stdev 0, 15000000-15000000); -# -# -v0.4.8#10709721885693706245 -0x0 -0x0 -0x0 -0x0 -0x1b7675c9a60821 -0x1 -0x1226c2ba7050c4 -0x169f12586704e6 -0x0 -0x1b33e57dd946c -0x0 -0x985d7b15fe098 -0xe -0x1f476c94cb87fd -0x1e042b5cbeb8ef -0x0 -0x8d065ac6dff5 -0x1 -0x1fcafd9897890d -0xffffffffffffffff \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153551-26949.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153551-26949.fail deleted file mode 100644 index 39400b782a..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823153551-26949.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:35:51 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_9 2022/08/23 15:35:51 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000e648), (*core.testTx)(0x1400000e678)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:35:51 current_total2in_batch0removed1427emptyBlocks0blockGasLeft14449pending1locals0locals+pending98.916µs -# TestSmallTxPool/thread_9 2022/08/23 15:35:51 block0pending2queued0elapsed98.916µs -# TestSmallTxPool/thread_9 2022/08/23 15:35:52 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals0locals+pending19.416µs -# TestSmallTxPool/thread_9 2022/08/23 15:35:52 block1pending0queued1elapsed19.416µs -# TestSmallTxPool/thread_9 2022/08/23 15:36:03 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:36:03 Case params: totalAccs = 2; totalTxs = 2; mean 21038, stdev 35, 21013-21063); queued mean 21063, stdev 0, 21063-21063); -# -# -v0.4.8#13595588099244556299 -0x0 -0x0 -0x1 -0x244913d528549 -0x156ca17ccae39d -0x1 -0x15f33767d2761a -0x19658f39c1c58a -0x1 -0x1c41e04416dd2b -0x3c9 -0x87af1a23cc04e -0xd -0x6065a80668ff7 -0x2ab9e5397f3a9 -0x1 -0xfb4cd936dd133 -0x36 -0xf933ed958a569 -0x3f \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154143-27072.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154143-27072.fail deleted file mode 100644 index c746489775..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154143-27072.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:41:43 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:41:43 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x140001bf2a8), (*core.testTx)(0x140001bf2d8)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:41:43 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending258.583µs -# TestSmallTxPool/thread_9 2022/08/23 15:41:43 block0pending2queued0elapsed258.583µs -# TestSmallTxPool/thread_9 2022/08/23 15:41:44 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending6.833µs -# TestSmallTxPool/thread_9 2022/08/23 15:41:44 block1pending0queued1elapsed6.833µs -# TestSmallTxPool/thread_9 2022/08/23 15:41:55 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:41:55 Case params: totalAccs = 1; totalTxs = 2; mean 21000, stdev 0, 21000-21001); queued mean 21000, stdev 0, 21000-21000); -# -# -v0.4.8#13829439310346059786 -0x0 -0x222ac2c8446a8 -0x0 -0x12af8cf8488479 -0x14a623563bd011 -0x1 -0x5808a6d2b5e52 -0x11430c70835dfa -0x0 -0x9520a3a94e82 -0x1 -0x4be41569af9dd -0x1 -0xa8204e5ad2979 -0xd8cbd6950a289 -0x0 -0x1f205a61b15f3c -0xffffffffffffffff -0x2ac2034c002e5 -0x0 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154450-27147.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154450-27147.fail deleted file mode 100644 index 9934014cb8..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823154450-27147.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 15:44:50 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/23 15:44:50 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x14000090528), (*core.testTx)(0x140000905b8)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 15:44:50 current_total2in_batch0removed1428emptyBlocks0blockGasLeft2004pending0locals1locals+pending115.625µs -# TestSmallTxPool/thread_9 2022/08/23 15:44:50 block0pending2queued0elapsed115.625µs -# TestSmallTxPool/thread_9 2022/08/23 15:44:51 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending8.542µs -# TestSmallTxPool/thread_9 2022/08/23 15:44:51 block1pending0queued1elapsed8.542µs -# TestSmallTxPool/thread_9 2022/08/23 15:45:02 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 15:45:02 Case params: totalAccs = 1; totalTxs = 2; mean 22431, stdev 2014, 21007-23856); queued mean 23856, stdev 0, 23856-23856); -# -# -v0.4.8#7020451940295245834 -0x0 -0x317fb31b760a7 -0x0 -0x8c55dd75138b2 -0x7f4e36068662b -0x1 -0x161dc3c77b0d4 -0x134bdea007a992 -0x0 -0x1b24d0a8be5c5b -0x2af -0x6295c526f8140 -0x7 -0x16d6df3bf51d29 -0x58fb9fed48232 -0x0 -0xe3f2c66cd7162 -0x38 -0x16d60fa2ab35ec -0xb28 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823191039-29281.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823191039-29281.fail deleted file mode 100644 index 98889be7f9..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220823191039-29281.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 [rapid] draw totalAccs: 2 -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400061c6c0), (*core.testTx)(0x1400061c6f0)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 current_total2in_batch0removed1428emptyBlocks0blockGasLeft10572pending0locals1locals+pending119.542µs -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 block0pending2queued0elapsed119.542µs -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending792ns -# TestSmallTxPool/thread_9 2022/08/23 19:10:39 block1pending0queued1elapsed792ns -# TestSmallTxPool/thread_9 2022/08/23 19:10:59 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/23 19:10:59 Case params: totalAccs = 2; totalTxs = 2; gasValues mean 1966329, stdev 2751109, 21001-3911657); queued mean 3911657, stdev 0, 3911657-3911657); -# -# -v0.4.8#14402856477024845831 -0x14fde8c62e6123 -0xbaa4a32094e99 -0x1 -0x9ed094d515ea5 -0x18fe1ff4c6a722 -0x1 -0xa78e62d441889 -0xddaab9f074c64 -0x0 -0x7ea9b7a103a41 -0x6 -0x4766e4fcd126 -0x1 -0x26d2c380a0e37 -0x1c6e33a7f359fb -0x0 -0x1ec9a20c01562f -0x3c7 -0x1e35777188d3f4 -0x3b5de1 \ No newline at end of file diff --git a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220824134902-34401.fail b/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220824134902-34401.fail deleted file mode 100644 index 300e889e62..0000000000 --- a/core/testdata/rapid/TestSmallTxPool_thread_9/TestSmallTxPool_thread_9-20220824134902-34401.fail +++ /dev/null @@ -1,31 +0,0 @@ -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 [rapid] draw totalAccs: 1 -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 [rapid] draw batches: &core.transactionBatches{txs:[]*core.testTx{(*core.testTx)(0x1400000f098), (*core.testTx)(0x1400000f0c8)}, totalTxs:2} -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 current_total2in_batch0removed1427emptyBlocks0blockGasLeft13022pending0locals1locals+pending51.875µs -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 block0pending2queued0elapsed51.875µs -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 current_total2in_batch0removed0emptyBlocks1blockGasLeft30000000pending0locals1locals+pending416ns -# TestSmallTxPool/thread_9 2022/08/24 13:49:02 block1pending0queued1elapsed416ns -# TestSmallTxPool/thread_9 2022/08/24 13:49:22 got 2s block timeout (expected less then 10s): total accounts 2. Pending 0, queued 1) -# TestSmallTxPool/thread_9 2022/08/24 13:49:22 Case params: totalAccs = 1; totalTxs = 2; gasValues mean 21007, stdev 9, 21001-21014); queued mean 21001, stdev 0, 21001-21001); -# -# -v0.4.8#977742020669865996 -0x1b5268bdef1acf -0x1986d21a571fe3 -0x0 -0xac5ef98e4c565 -0x17b79b269a9114 -0x1 -0x1132c7d7237c99 -0x177c4d6014ed36 -0x0 -0xe48ac52517 -0x0 -0xac3ba96ab7bcf -0xe -0x8596b171710bc -0x13bb17823da650 -0x0 -0x194d36a022c22f -0x25f -0x2752775646daa -0x1 \ No newline at end of file diff --git a/core/tx_pool.go b/core/tx_pool.go index 474d3b68e2..7648668688 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -18,7 +18,6 @@ package core import ( "errors" - "fmt" "math" "math/big" "sort" @@ -1101,14 +1100,9 @@ func (pool *TxPool) scheduleReorgLoop() { queuedEvents = make(map[common.Address]*txSortedMap) ) - n := 0 - now := time.Now() for { // Launch next background reorg if needed if curDone == nil && launchNextRun { - fmt.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", n, time.Since(now)) - n++ - now = time.Now() // Run the background reorg and announcements go pool.runReorg(nextDone, reset, dirtyAccounts, queuedEvents) @@ -1122,8 +1116,6 @@ func (pool *TxPool) scheduleReorgLoop() { select { case req := <-pool.reqResetCh: - fmt.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!-reset", n) - // Reset request: update head if request is already pending. if reset == nil { reset = req @@ -1134,7 +1126,6 @@ func (pool *TxPool) scheduleReorgLoop() { pool.reorgDoneCh <- nextDone case req := <-pool.reqPromoteCh: - fmt.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!-promote", n, len(req.accounts)) // Promote request: update address set if request is already pending. if dirtyAccounts == nil { dirtyAccounts = req @@ -1145,7 +1136,6 @@ func (pool *TxPool) scheduleReorgLoop() { pool.reorgDoneCh <- nextDone case tx := <-pool.queueTxEventCh: - fmt.Println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!-queue", n) // Queue up the event, but don't schedule a reorg. It's up to the caller to // request one later if they want the events sent. addr, _ := types.Sender(pool.signer, tx) diff --git a/core/tx_pool_test.go b/core/tx_pool_test.go index 4ffbd7f780..f2d95de7d3 100644 --- a/core/tx_pool_test.go +++ b/core/tx_pool_test.go @@ -2712,6 +2712,8 @@ func defaultTxPoolRapidConfig() txPoolRapidConfig { } } +// TestSmallTxPool is not something to run in parallel as far it uses all CPUs +// nolint:paralleltest func TestSmallTxPool(t *testing.T) { t.Skip("a red test to be fixed") @@ -2729,6 +2731,8 @@ func TestSmallTxPool(t *testing.T) { testPoolBatchInsert(t, cfg) } +// This test is not something to run in parallel as far it uses all CPUs +// nolint:paralleltest func TestBigTxPool(t *testing.T) { t.Skip("a red test to be fixed") @@ -2737,7 +2741,7 @@ func TestBigTxPool(t *testing.T) { testPoolBatchInsert(t, cfg) } -//nolint:gocognit +//nolint:gocognit,thelper func testPoolBatchInsert(t *testing.T, cfg txPoolRapidConfig) { t.Parallel() diff --git a/tests/bor/bor_reorg_test.go b/tests/bor/bor_reorg_test.go new file mode 100644 index 0000000000..a93ac6bf95 --- /dev/null +++ b/tests/bor/bor_reorg_test.go @@ -0,0 +1,278 @@ +//go:build integration + +package bor + +import ( + "crypto/ecdsa" + "encoding/json" + "io/ioutil" + "math/big" + "os" + "testing" + "time" + + "github.com/ethereum/go-ethereum/accounts/keystore" + "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/common/fdlimit" + "github.com/ethereum/go-ethereum/core" + "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/eth" + "github.com/ethereum/go-ethereum/eth/downloader" + "github.com/ethereum/go-ethereum/eth/ethconfig" + "github.com/ethereum/go-ethereum/log" + "github.com/ethereum/go-ethereum/miner" + "github.com/ethereum/go-ethereum/node" + "github.com/ethereum/go-ethereum/p2p" + "github.com/ethereum/go-ethereum/p2p/enode" + "github.com/ethereum/go-ethereum/params" + "github.com/stretchr/testify/assert" +) + +var ( + // addr1 = 0x71562b71999873DB5b286dF957af199Ec94617F7 + pkey1, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291") + // addr2 = 0x9fB29AAc15b9A4B7F17c3385939b007540f4d791 + pkey2, _ = crypto.HexToECDSA("9b28f36fbd67381120752d6172ecdcf10e06ab2d9a1367aac00cdcd6ac7855d3") + keys = []*ecdsa.PrivateKey{pkey1, pkey2} +) + +func initMiner(genesis *core.Genesis, privKey *ecdsa.PrivateKey) (*node.Node, *eth.Ethereum, error) { + // Define the basic configurations for the Ethereum node + datadir, _ := ioutil.TempDir("", "") + + config := &node.Config{ + Name: "geth", + Version: params.Version, + DataDir: datadir, + P2P: p2p.Config{ + ListenAddr: "0.0.0.0:0", + NoDiscovery: true, + MaxPeers: 25, + }, + UseLightweightKDF: true, + } + // Create the node and configure a full Ethereum node on it + stack, err := node.New(config) + if err != nil { + return nil, nil, err + } + ethBackend, err := eth.New(stack, ðconfig.Config{ + Genesis: genesis, + NetworkId: genesis.Config.ChainID.Uint64(), + SyncMode: downloader.FullSync, + DatabaseCache: 256, + DatabaseHandles: 256, + TxPool: core.DefaultTxPoolConfig, + GPO: ethconfig.Defaults.GPO, + Ethash: ethconfig.Defaults.Ethash, + Miner: miner.Config{ + Etherbase: crypto.PubkeyToAddress(privKey.PublicKey), + GasCeil: genesis.GasLimit * 11 / 10, + GasPrice: big.NewInt(1), + Recommit: time.Second, + }, + WithoutHeimdall: true, + }) + if err != nil { + return nil, nil, err + } + + // register backend to account manager with keystore for signing + keydir := stack.KeyStoreDir() + + n, p := keystore.StandardScryptN, keystore.StandardScryptP + kStore := keystore.NewKeyStore(keydir, n, p) + + kStore.ImportECDSA(privKey, "") + acc := kStore.Accounts()[0] + kStore.Unlock(acc, "") + // proceed to authorize the local account manager in any case + ethBackend.AccountManager().AddBackend(kStore) + + // ethBackend.AccountManager().AddBackend() + err = stack.Start() + return stack, ethBackend, err +} + +func initGenesis(t *testing.T, faucets []*ecdsa.PrivateKey) *core.Genesis { + + // sprint size = 8 in genesis + genesisData, err := ioutil.ReadFile("./testdata/genesis_2val.json") + if err != nil { + t.Fatalf("%s", err) + } + + genesis := &core.Genesis{} + + if err := json.Unmarshal(genesisData, genesis); err != nil { + t.Fatalf("%s", err) + } + + genesis.Config.ChainID = big.NewInt(15001) + genesis.Config.EIP150Hash = common.Hash{} + + return genesis +} + +func TestValidatorWentOffline(t *testing.T) { + + log.Root().SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StreamHandler(os.Stderr, log.TerminalFormat(true)))) + fdlimit.Raise(2048) + + // Generate a batch of accounts to seal and fund with + faucets := make([]*ecdsa.PrivateKey, 128) + for i := 0; i < len(faucets); i++ { + faucets[i], _ = crypto.GenerateKey() + } + + // Create an Ethash network based off of the Ropsten config + genesis := initGenesis(t, faucets) + + var ( + stacks []*node.Node + nodes []*eth.Ethereum + enodes []*enode.Node + ) + for i := 0; i < 2; i++ { + // Start the node and wait until it's up + stack, ethBackend, err := initMiner(genesis, keys[i]) + if err != nil { + panic(err) + } + defer stack.Close() + + for stack.Server().NodeInfo().Ports.Listener == 0 { + time.Sleep(250 * time.Millisecond) + } + // Connect the node to all the previous ones + for _, n := range enodes { + stack.Server().AddPeer(n) + } + // Start tracking the node and its enode + stacks = append(stacks, stack) + nodes = append(nodes, ethBackend) + enodes = append(enodes, stack.Server().Self()) + } + + // Iterate over all the nodes and start mining + time.Sleep(3 * time.Second) + for _, node := range nodes { + if err := node.StartMining(1); err != nil { + panic(err) + } + } + + for { + + // for block 1 to 8, the primary validator is node0 + // for block 9 to 16, the primary validator is node1 + // for block 17 to 24, the primary validator is node0 + // for block 25 to 32, the primary validator is node1 + blockHeaderVal0 := nodes[0].BlockChain().CurrentHeader() + + // we remove peer connection between node0 and node1 + if blockHeaderVal0.Number.Uint64() == 9 { + stacks[0].Server().RemovePeer(enodes[1]) + } + + // here, node1 is the primary validator, node0 will sign out-of-turn + + // we add peer connection between node1 and node0 + if blockHeaderVal0.Number.Uint64() == 14 { + stacks[0].Server().AddPeer(enodes[1]) + } + + // reorg happens here, node1 has higher difficulty, it will replace blocks by node0 + + if blockHeaderVal0.Number.Uint64() == 30 { + + break + } + + } + + // check block 10 miner ; expected author is node1 signer + blockHeaderVal0 := nodes[0].BlockChain().GetHeaderByNumber(10) + blockHeaderVal1 := nodes[1].BlockChain().GetHeaderByNumber(10) + authorVal0, err := nodes[0].Engine().Author(blockHeaderVal0) + if err != nil { + log.Error("Error in getting author", "err", err) + } + authorVal1, err := nodes[1].Engine().Author(blockHeaderVal1) + if err != nil { + log.Error("Error in getting author", "err", err) + } + + // check both nodes have the same block 10 + assert.Equal(t, authorVal0, authorVal1) + + // check node0 has block mined by node1 + assert.Equal(t, authorVal0, nodes[1].AccountManager().Accounts()[0]) + + // check node1 has block mined by node1 + assert.Equal(t, authorVal1, nodes[1].AccountManager().Accounts()[0]) + + // check block 11 miner ; expected author is node1 signer + blockHeaderVal0 = nodes[0].BlockChain().GetHeaderByNumber(11) + blockHeaderVal1 = nodes[1].BlockChain().GetHeaderByNumber(11) + authorVal0, err = nodes[0].Engine().Author(blockHeaderVal0) + if err != nil { + log.Error("Error in getting author", "err", err) + } + authorVal1, err = nodes[1].Engine().Author(blockHeaderVal1) + if err != nil { + log.Error("Error in getting author", "err", err) + } + + // check both nodes have the same block 11 + assert.Equal(t, authorVal0, authorVal1) + + // check node0 has block mined by node1 + assert.Equal(t, authorVal0, nodes[1].AccountManager().Accounts()[0]) + + // check node1 has block mined by node1 + assert.Equal(t, authorVal1, nodes[1].AccountManager().Accounts()[0]) + + // check block 12 miner ; expected author is node1 signer + blockHeaderVal0 = nodes[0].BlockChain().GetHeaderByNumber(12) + blockHeaderVal1 = nodes[1].BlockChain().GetHeaderByNumber(12) + authorVal0, err = nodes[0].Engine().Author(blockHeaderVal0) + if err != nil { + log.Error("Error in getting author", "err", err) + } + authorVal1, err = nodes[1].Engine().Author(blockHeaderVal1) + if err != nil { + log.Error("Error in getting author", "err", err) + } + + // check both nodes have the same block 12 + assert.Equal(t, authorVal0, authorVal1) + + // check node0 has block mined by node1 + assert.Equal(t, authorVal0, nodes[1].AccountManager().Accounts()[0]) + + // check node1 has block mined by node1 + assert.Equal(t, authorVal1, nodes[1].AccountManager().Accounts()[0]) + + // check block 17 miner ; expected author is node0 signer + blockHeaderVal0 = nodes[0].BlockChain().GetHeaderByNumber(17) + blockHeaderVal1 = nodes[1].BlockChain().GetHeaderByNumber(17) + authorVal0, err = nodes[0].Engine().Author(blockHeaderVal0) + if err != nil { + log.Error("Error in getting author", "err", err) + } + authorVal1, err = nodes[1].Engine().Author(blockHeaderVal1) + if err != nil { + log.Error("Error in getting author", "err", err) + } + + // check both nodes have the same block 17 + assert.Equal(t, authorVal0, authorVal1) + + // check node0 has block mined by node1 + assert.Equal(t, authorVal0, nodes[0].AccountManager().Accounts()[0]) + + // check node1 has block mined by node1 + assert.Equal(t, authorVal1, nodes[0].AccountManager().Accounts()[0]) + +} diff --git a/tests/bor/testdata/genesis_2val.json b/tests/bor/testdata/genesis_2val.json new file mode 100644 index 0000000000..498424aa81 --- /dev/null +++ b/tests/bor/testdata/genesis_2val.json @@ -0,0 +1,64 @@ +{ + "config": { + "chainId": 15001, + "homesteadBlock": 0, + "eip150Block": 0, + "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "eip155Block": 0, + "eip158Block": 0, + "byzantiumBlock": 0, + "constantinopleBlock": 0, + "petersburgBlock": 0, + "istanbulBlock": 0, + "muirGlacierBlock": 0, + "berlinBlock": 0, + "londonBlock": 1, + "bor": { + "jaipurBlock": 2, + "period": { + "0": 1 + }, + "producerDelay": 4, + "sprint": 8, + "backupMultiplier": { + "0": 1 + }, + "validatorContract": "0x0000000000000000000000000000000000001000", + "stateReceiverContract": "0x0000000000000000000000000000000000001001", + "burntContract": { + "0": "0x000000000000000000000000000000000000dead" + } + } + }, + "nonce": "0x0", + "timestamp": "0x5ce28211", + "extraData": "", + "gasLimit": "0x989680", + "difficulty": "0x1", + "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "coinbase": "0x0000000000000000000000000000000000000000", + "alloc": { + "0000000000000000000000000000000000001000": { + "balance": "0x0", + "code": "0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806360c8614d1161010f578063af26aa96116100a2578063d5b844eb11610071578063d5b844eb14610666578063dcf2793a14610684578063e3b7c924146106b6578063f59cf565146106d4576101f0565b8063af26aa96146105c7578063b71d7a69146105e7578063b7ab4db514610617578063c1b3c91914610636576101f0565b806370ba5707116100de57806370ba57071461052b57806398ab2b621461055b5780639d11b80714610579578063ae756451146105a9576101f0565b806360c8614d1461049c57806365b3a1e2146104bc57806366332354146104db578063687a9bd6146104f9576101f0565b80633434735f1161018757806344d6528f1161015657806344d6528f146103ee5780634dbc959f1461041e57806355614fcc1461043c578063582a8d081461046c576101f0565b80633434735f1461035257806335ddfeea1461037057806343ee8213146103a057806344c15cb1146103be576101f0565b806323f2a73f116101c357806323f2a73f146102a45780632bc06564146102d45780632de3a180146102f25780632eddf35214610322576101f0565b8063047a6c5b146101f55780630c35b1cb146102275780631270b5741461025857806323c2a2b414610288575b600080fd5b61020f600480360361020a91908101906129ba565b610706565b60405161021e939291906132f9565b60405180910390f35b610241600480360361023c91908101906129ba565b61075d565b60405161024f92919061311a565b60405180910390f35b610272600480360361026d91908101906129e3565b610939565b60405161027f9190613151565b60405180910390f35b6102a2600480360361029d9190810190612ac2565b610a91565b005b6102be60048036036102b991908101906129e3565b61112a565b6040516102cb9190613151565b60405180910390f35b6102dc611281565b6040516102e991906132a7565b60405180910390f35b61030c60048036036103079190810190612917565b611286565b604051610319919061316c565b60405180910390f35b61033c600480360361033791908101906129ba565b611307565b60405161034991906132a7565b60405180910390f35b61035a611437565b60405161036791906130ff565b60405180910390f35b61038a60048036036103859190810190612953565b61144f565b6040516103979190613151565b60405180910390f35b6103a861151a565b6040516103b5919061316c565b60405180910390f35b6103d860048036036103d39190810190612a1f565b611531565b6040516103e591906132a7565b60405180910390f35b610408600480360361040391908101906129e3565b611619565b604051610415919061328c565b60405180910390f35b610426611781565b60405161043391906132a7565b60405180910390f35b6104566004803603610451919081019061289c565b611791565b6040516104639190613151565b60405180910390f35b610486600480360361048191908101906128c5565b6117ab565b604051610493919061316c565b60405180910390f35b6104a4611829565b6040516104b3939291906132f9565b60405180910390f35b6104c461189d565b6040516104d292919061311a565b60405180910390f35b6104e3611a04565b6040516104f091906132a7565b60405180910390f35b610513600480360361050e9190810190612a86565b611a09565b604051610522939291906132c2565b60405180910390f35b6105456004803603610540919081019061289c565b611a6d565b6040516105529190613151565b60405180910390f35b610563611a87565b604051610570919061316c565b60405180910390f35b610593600480360361058e91908101906129ba565b611a9e565b6040516105a091906132a7565b60405180910390f35b6105b1611bcf565b6040516105be919061316c565b60405180910390f35b6105cf611be6565b6040516105de939291906132f9565b60405180910390f35b61060160048036036105fc91908101906129ba565b611c47565b60405161060e91906132a7565b60405180910390f35b61061f611d47565b60405161062d92919061311a565b60405180910390f35b610650600480360361064b91908101906129ba565b611d5b565b60405161065d91906132a7565b60405180910390f35b61066e611d7c565b60405161067b9190613330565b60405180910390f35b61069e60048036036106999190810190612a86565b611d81565b6040516106ad939291906132c2565b60405180910390f35b6106be611de5565b6040516106cb91906132a7565b60405180910390f35b6106ee60048036036106e991908101906129ba565b611df7565b6040516106fd939291906132f9565b60405180910390f35b60008060006002600085815260200190815260200160002060000154600260008681526020019081526020016000206001015460026000878152602001908152602001600020600201549250925092509193909250565b60608060ff83116107795761077061189d565b91509150610934565b600061078484611c47565b9050606060016000838152602001908152602001600020805490506040519080825280602002602001820160405280156107cd5781602001602082028038833980820191505090505b509050606060016000848152602001908152602001600020805490506040519080825280602002602001820160405280156108175781602001602082028038833980820191505090505b50905060008090505b60016000858152602001908152602001600020805490508110156109295760016000858152602001908152602001600020818154811061085c57fe5b906000526020600020906003020160020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683828151811061089a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506001600085815260200190815260200160002081815481106108f257fe5b90600052602060002090600302016001015482828151811061091057fe5b6020026020010181815250508080600101915050610820565b508181945094505050505b915091565b6000606060016000858152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610a0c578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505081526020019060010190610970565b50505050905060008090505b8151811015610a84578373ffffffffffffffffffffffffffffffffffffffff16828281518110610a4457fe5b60200260200101516040015173ffffffffffffffffffffffffffffffffffffffff161415610a7757600192505050610a8b565b8080600101915050610a18565b5060009150505b92915050565b73fffffffffffffffffffffffffffffffffffffffe73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a9061326c565b60405180910390fd5b6000610b1d611781565b90506000811415610b3157610b30611e21565b5b610b4560018261214290919063ffffffff16565b8814610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d906131ec565b60405180910390fd5b868611610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061324c565b60405180910390fd5b6000604060018989030181610bd957fe5b0614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c119061322c565b60405180910390fd5b8660026000838152602001908152602001600020600101541115610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906131cc565b60405180910390fd5b6000600260008a81526020019081526020016000206000015414610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc39061320c565b60405180910390fd5b604051806060016040528089815260200188815260200187815250600260008a8152602001908152602001600020600082015181600001556020820151816001015560408201518160020155905050600388908060018154018082558091505090600182039060005260206000200160009091929091909150555060008060008a815260200190815260200160002081610d669190612696565b506000600160008a815260200190815260200160002081610d879190612696565b506060610ddf610dda87878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612161565b61218f565b905060008090505b8151811015610f51576060610e0e838381518110610e0157fe5b602002602001015161218f565b90506000808c81526020019081526020016000208054809190600101610e349190612696565b506040518060600160405280610e5d83600081518110610e5057fe5b602002602001015161226c565b8152602001610e7f83600181518110610e7257fe5b602002602001015161226c565b8152602001610ea183600281518110610e9457fe5b60200260200101516122dd565b73ffffffffffffffffffffffffffffffffffffffff168152506000808d81526020019081526020016000208381548110610ed757fe5b9060005260206000209060030201600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050508080600101915050610de7565b506060610fa9610fa486868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612161565b61218f565b905060008090505b815181101561111d576060610fd8838381518110610fcb57fe5b602002602001015161218f565b9050600160008d81526020019081526020016000208054809190600101610fff9190612696565b5060405180606001604052806110288360008151811061101b57fe5b602002602001015161226c565b815260200161104a8360018151811061103d57fe5b602002602001015161226c565b815260200161106c8360028151811061105f57fe5b60200260200101516122dd565b73ffffffffffffffffffffffffffffffffffffffff16815250600160008e815260200190815260200160002083815481106110a357fe5b9060005260206000209060030201600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050508080600101915050610fb1565b5050505050505050505050565b60006060600080858152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156111fc578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505081526020019060010190611160565b50505050905060008090505b8151811015611274578373ffffffffffffffffffffffffffffffffffffffff1682828151811061123457fe5b60200260200101516040015173ffffffffffffffffffffffffffffffffffffffff1614156112675760019250505061127b565b8080600101915050611208565b5060009150505b92915050565b604081565b60006002600160f81b84846040516020016112a39392919061306c565b6040516020818303038152906040526040516112bf91906130a9565b602060405180830381855afa1580156112dc573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052506112ff91908101906128ee565b905092915050565b60006060600080848152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156113d9578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250508152602001906001019061133d565b505050509050600080905060008090505b825181101561142c5761141d83828151811061140257fe5b6020026020010151602001518361214290919063ffffffff16565b915080806001019150506113ea565b508092505050919050565b73fffffffffffffffffffffffffffffffffffffffe81565b600080600080859050600060218087518161146657fe5b04029050600081111561147f5761147c876117ab565b91505b6000602190505b818111611509576000600182038801519050818801519550806000602081106114ab57fe5b1a60f81b9450600060f81b857effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156114f0576114e98685611286565b93506114fd565b6114fa8487611286565b93505b50602181019050611486565b508782149450505050509392505050565b604051611526906130d5565b604051809103902081565b60008060009050600080905060008090505b84518167ffffffffffffffff16101561160c57606061156e868367ffffffffffffffff166041612300565b90506000611585828961238c90919063ffffffff16565b905061158f6126c8565b6115998a83611619565b90506115a58a8361112a565b80156115dc57508473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16115b156115fe578194506115fb81602001518761214290919063ffffffff16565b95505b505050604181019050611543565b5081925050509392505050565b6116216126c8565b6060600080858152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156116f1578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505081526020019060010190611655565b50505050905060008090505b8151811015611779578373ffffffffffffffffffffffffffffffffffffffff1682828151811061172957fe5b60200260200101516040015173ffffffffffffffffffffffffffffffffffffffff16141561176c5781818151811061175d57fe5b60200260200101519250611779565b80806001019150506116fd565b505092915050565b600061178c43611c47565b905090565b60006117a461179e611781565b8361112a565b9050919050565b60006002600060f81b836040516020016117c6929190613040565b6040516020818303038152906040526040516117e291906130a9565b602060405180830381855afa1580156117ff573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525061182291908101906128ee565b9050919050565b60008060008061184a600161183c611781565b61214290919063ffffffff16565b905060026000828152602001908152602001600020600001546002600083815260200190815260200160002060010154600260008481526020019081526020016000206002015493509350935050909192565b606080606060026040519080825280602002602001820160405280156118d25781602001602082028038833980820191505090505b5090507371562b71999873db5b286df957af199ec94617f7816000815181106118f757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050739fb29aac15b9a4b7f17c3385939b007540f4d7918160018151811061195357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050606060026040519080825280602002602001820160405280156119bf5781602001602082028038833980820191505090505b5090506028816000815181106119d157fe5b602002602001018181525050601e816001815181106119ec57fe5b60200260200101818152505081819350935050509091565b60ff81565b60016020528160005260406000208181548110611a2257fe5b9060005260206000209060030201600091509150508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b6000611a80611a7a611781565b83610939565b9050919050565b604051611a93906130c0565b604051809103902081565b6000606060016000848152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611b71578382906000526020600020906003020160405180606001604052908160008201548152602001600182015481526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505081526020019060010190611ad5565b505050509050600080905060008090505b8251811015611bc457611bb5838281518110611b9a57fe5b6020026020010151602001518361214290919063ffffffff16565b91508080600101915050611b82565b508092505050919050565b604051611bdb906130ea565b604051809103902081565b600080600080611bf4611781565b905060026000828152602001908152602001600020600001546002600083815260200190815260200160002060010154600260008481526020019081526020016000206002015493509350935050909192565b60008060038054905090505b6000811115611d0757611c646126ff565b6002600060036001850381548110611c7857fe5b906000526020600020015481526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905083816020015111158015611cd557506000816040015114155b8015611ce5575080604001518411155b15611cf857806000015192505050611d42565b50808060019003915050611c53565b5060006003805490501115611d3d57600360016003805490500381548110611d2b57fe5b90600052602060002001549050611d42565b600090505b919050565b606080611d534361075d565b915091509091565b60038181548110611d6857fe5b906000526020600020016000915090505481565b600281565b60006020528160005260406000208181548110611d9a57fe5b9060005260206000209060030201600091509150508060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b600060404381611df157fe5b04905090565b60026020528060005260406000206000915090508060000154908060010154908060020154905083565b606080611e2c61189d565b8092508193505050600080905060405180606001604052808281526020016000815260200160ff815250600260008381526020019081526020016000206000820151816000015560208201518160010155604082015181600201559050506003819080600181540180825580915050906001820390600052602060002001600090919290919091505550600080600083815260200190815260200160002081611ed59190612696565b5060006001600083815260200190815260200160002081611ef69190612696565b5060008090505b8351811015612018576000808381526020019081526020016000208054809190600101611f2a9190612696565b506040518060600160405280828152602001848381518110611f4857fe5b60200260200101518152602001858381518110611f6157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152506000808481526020019081526020016000208281548110611f9f57fe5b9060005260206000209060030201600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050508080600101915050611efd565b5060008090505b835181101561213c5760016000838152602001908152602001600020805480919060010161204d9190612696565b50604051806060016040528082815260200184838151811061206b57fe5b6020026020010151815260200185838151811061208457fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168152506001600084815260200190815260200160002082815481106120c357fe5b9060005260206000209060030201600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050808060010191505061201f565b50505050565b60008082840190508381101561215757600080fd5b8091505092915050565b612169612720565b600060208301905060405180604001604052808451815260200182815250915050919050565b606061219a82612496565b6121a357600080fd5b60006121ae836124e4565b90506060816040519080825280602002602001820160405280156121ec57816020015b6121d961273a565b8152602001906001900390816121d15790505b50905060006121fe8560200151612555565b8560200151019050600080600090505b8481101561225f5761221f836125de565b915060405180604001604052808381526020018481525084828151811061224257fe5b60200260200101819052508183019250808060010191505061220e565b5082945050505050919050565b600080826000015111801561228657506021826000015111155b61228f57600080fd5b600061229e8360200151612555565b905060008184600001510390506000808386602001510190508051915060208310156122d157826020036101000a820491505b81945050505050919050565b600060158260000151146122f057600080fd5b6122f98261226c565b9050919050565b60608183018451101561231257600080fd5b606082156000811461232f57604051915060208201604052612380565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561236d5780518352602083019250602081019050612350565b50868552601f19601f8301166040525050505b50809150509392505050565b60008060008060418551146123a75760009350505050612490565b602085015192506040850151915060ff6041860151169050601b8160ff1610156123d257601b810190505b601b8160ff16141580156123ea5750601c8160ff1614155b156123fb5760009350505050612490565b6000600187838686604051600081526020016040526040516124209493929190613187565b6020604051602081039080840390855afa158015612442573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248857600080fd5b809450505050505b92915050565b600080826000015114156124ad57600090506124df565b60008083602001519050805160001a915060c060ff168260ff1610156124d8576000925050506124df565b6001925050505b919050565b600080826000015114156124fb5760009050612550565b6000809050600061250f8460200151612555565b84602001510190506000846000015185602001510190505b8082101561254957612538826125de565b820191508280600101935050612527565b8293505050505b919050565b600080825160001a9050608060ff168110156125755760009150506125d9565b60b860ff1681108061259a575060c060ff168110158015612599575060f860ff1681105b5b156125a95760019150506125d9565b60c060ff168110156125c95760018060b80360ff168203019150506125d9565b60018060f80360ff168203019150505b919050565b6000806000835160001a9050608060ff168110156125ff576001915061268c565b60b860ff1681101561261c576001608060ff16820301915061268b565b60c060ff1681101561264c5760b78103600185019450806020036101000a8551046001820181019350505061268a565b60f860ff1681101561266957600160c060ff168203019150612689565b60f78103600185019450806020036101000a855104600182018101935050505b5b5b5b8192505050919050565b8154818355818111156126c3576003028160030283600052602060002091820191016126c29190612754565b5b505050565b60405180606001604052806000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b60405180606001604052806000815260200160008152602001600081525090565b604051806040016040528060008152602001600081525090565b604051806040016040528060008152602001600081525090565b6127a791905b808211156127a35760008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555060030161275a565b5090565b90565b6000813590506127b981613529565b92915050565b6000813590506127ce81613540565b92915050565b6000815190506127e381613540565b92915050565b60008083601f8401126127fb57600080fd5b8235905067ffffffffffffffff81111561281457600080fd5b60208301915083600182028301111561282c57600080fd5b9250929050565b600082601f83011261284457600080fd5b813561285761285282613378565b61334b565b9150808252602083016020830185838301111561287357600080fd5b61287e8382846134d3565b50505092915050565b60008135905061289681613557565b92915050565b6000602082840312156128ae57600080fd5b60006128bc848285016127aa565b91505092915050565b6000602082840312156128d757600080fd5b60006128e5848285016127bf565b91505092915050565b60006020828403121561290057600080fd5b600061290e848285016127d4565b91505092915050565b6000806040838503121561292a57600080fd5b6000612938858286016127bf565b9250506020612949858286016127bf565b9150509250929050565b60008060006060848603121561296857600080fd5b6000612976868287016127bf565b9350506020612987868287016127bf565b925050604084013567ffffffffffffffff8111156129a457600080fd5b6129b086828701612833565b9150509250925092565b6000602082840312156129cc57600080fd5b60006129da84828501612887565b91505092915050565b600080604083850312156129f657600080fd5b6000612a0485828601612887565b9250506020612a15858286016127aa565b9150509250929050565b600080600060608486031215612a3457600080fd5b6000612a4286828701612887565b9350506020612a53868287016127bf565b925050604084013567ffffffffffffffff811115612a7057600080fd5b612a7c86828701612833565b9150509250925092565b60008060408385031215612a9957600080fd5b6000612aa785828601612887565b9250506020612ab885828601612887565b9150509250929050565b600080600080600080600060a0888a031215612add57600080fd5b6000612aeb8a828b01612887565b9750506020612afc8a828b01612887565b9650506040612b0d8a828b01612887565b955050606088013567ffffffffffffffff811115612b2a57600080fd5b612b368a828b016127e9565b9450945050608088013567ffffffffffffffff811115612b5557600080fd5b612b618a828b016127e9565b925092505092959891949750929550565b6000612b7e8383612ba2565b60208301905092915050565b6000612b968383613013565b60208301905092915050565b612bab81613448565b82525050565b612bba81613448565b82525050565b6000612bcb826133c4565b612bd581856133ff565b9350612be0836133a4565b8060005b83811015612c11578151612bf88882612b72565b9750612c03836133e5565b925050600181019050612be4565b5085935050505092915050565b6000612c29826133cf565b612c338185613410565b9350612c3e836133b4565b8060005b83811015612c6f578151612c568882612b8a565b9750612c61836133f2565b925050600181019050612c42565b5085935050505092915050565b612c858161345a565b82525050565b612c9c612c9782613466565b613515565b82525050565b612cab81613492565b82525050565b612cc2612cbd82613492565b61351f565b82525050565b6000612cd3826133da565b612cdd8185613421565b9350612ced8185602086016134e2565b80840191505092915050565b6000612d0660048361343d565b91507f766f7465000000000000000000000000000000000000000000000000000000006000830152600482019050919050565b6000612d46602d8361342c565b91507f537461727420626c6f636b206d7573742062652067726561746572207468616e60008301527f2063757272656e74207370616e000000000000000000000000000000000000006020830152604082019050919050565b6000612dac600f8361343d565b91507f6865696d64616c6c2d50357258776700000000000000000000000000000000006000830152600f82019050919050565b6000612dec600f8361342c565b91507f496e76616c6964207370616e20696400000000000000000000000000000000006000830152602082019050919050565b6000612e2c60138361342c565b91507f5370616e20616c726561647920657869737473000000000000000000000000006000830152602082019050919050565b6000612e6c60458361342c565b91507f446966666572656e6365206265747765656e20737461727420616e6420656e6460008301527f20626c6f636b206d75737420626520696e206d756c7469706c6573206f66207360208301527f7072696e740000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000612ef8602a8361342c565b91507f456e6420626c6f636b206d7573742062652067726561746572207468616e207360008301527f7461727420626c6f636b000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f5e60058361343d565b91507f31353030310000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612f9e60128361342c565b91507f4e6f742053797374656d204164646573732100000000000000000000000000006000830152602082019050919050565b606082016000820151612fe76000850182613013565b506020820151612ffa6020850182613013565b50604082015161300d6040850182612ba2565b50505050565b61301c816134bc565b82525050565b61302b816134bc565b82525050565b61303a816134c6565b82525050565b600061304c8285612c8b565b60018201915061305c8284612cb1565b6020820191508190509392505050565b60006130788286612c8b565b6001820191506130888285612cb1565b6020820191506130988284612cb1565b602082019150819050949350505050565b60006130b58284612cc8565b915081905092915050565b60006130cb82612cf9565b9150819050919050565b60006130e082612d9f565b9150819050919050565b60006130f582612f51565b9150819050919050565b60006020820190506131146000830184612bb1565b92915050565b600060408201905081810360008301526131348185612bc0565b905081810360208301526131488184612c1e565b90509392505050565b60006020820190506131666000830184612c7c565b92915050565b60006020820190506131816000830184612ca2565b92915050565b600060808201905061319c6000830187612ca2565b6131a96020830186613031565b6131b66040830185612ca2565b6131c36060830184612ca2565b95945050505050565b600060208201905081810360008301526131e581612d39565b9050919050565b6000602082019050818103600083015261320581612ddf565b9050919050565b6000602082019050818103600083015261322581612e1f565b9050919050565b6000602082019050818103600083015261324581612e5f565b9050919050565b6000602082019050818103600083015261326581612eeb565b9050919050565b6000602082019050818103600083015261328581612f91565b9050919050565b60006060820190506132a16000830184612fd1565b92915050565b60006020820190506132bc6000830184613022565b92915050565b60006060820190506132d76000830186613022565b6132e46020830185613022565b6132f16040830184612bb1565b949350505050565b600060608201905061330e6000830186613022565b61331b6020830185613022565b6133286040830184613022565b949350505050565b60006020820190506133456000830184613031565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561336e57600080fd5b8060405250919050565b600067ffffffffffffffff82111561338f57600080fd5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134538261349c565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156135005780820151818401526020810190506134e5565b8381111561350f576000848401525b50505050565b6000819050919050565b6000819050919050565b61353281613448565b811461353d57600080fd5b50565b61354981613492565b811461355457600080fd5b50565b613560816134bc565b811461356b57600080fd5b5056fea365627a7a7231582051bf0a46b5958c4ecdf9f1f9a9d8b62deacac5d79cdf5595e9853f3c0132fe236c6578706572696d656e74616cf564736f6c63430005110040" + }, + "0000000000000000000000000000000000001001": { + "balance": "0x0", + "code": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806319494a17146100465780633434735f146100e15780635407ca671461012b575b600080fd5b6100c76004803603604081101561005c57600080fd5b81019080803590602001909291908035906020019064010000000081111561008357600080fd5b82018360208201111561009557600080fd5b803590602001918460018302840111640100000000831117156100b757600080fd5b9091929391929390505050610149565b604051808215151515815260200191505060405180910390f35b6100e961047a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610133610492565b6040518082815260200191505060405180910390f35b600073fffffffffffffffffffffffffffffffffffffffe73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4e6f742053797374656d2041646465737321000000000000000000000000000081525060200191505060405180910390fd5b606061025761025285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610498565b6104c6565b905060006102788260008151811061026b57fe5b60200260200101516105a3565b905080600160005401146102f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f537461746549647320617265206e6f742073657175656e7469616c000000000081525060200191505060405180910390fd5b600080815480929190600101919050555060006103248360018151811061031757fe5b6020026020010151610614565b905060606103458460028151811061033857fe5b6020026020010151610637565b9050610350826106c3565b1561046f576000624c4b409050606084836040516024018083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156103aa57808201518184015260208101905061038f565b50505050905090810190601f1680156103d75780820380516001836020036101000a031916815260200191505b5093505050506040516020818303038152906040527f26c53bea000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050905060008082516020840160008887f1965050505b505050509392505050565b73fffffffffffffffffffffffffffffffffffffffe81565b60005481565b6104a0610943565b600060208301905060405180604001604052808451815260200182815250915050919050565b60606104d1826106dc565b6104da57600080fd5b60006104e58361072a565b905060608160405190808252806020026020018201604052801561052357816020015b61051061095d565b8152602001906001900390816105085790505b5090506000610535856020015161079b565b8560200151019050600080600090505b848110156105965761055683610824565b915060405180604001604052808381526020018481525084828151811061057957fe5b602002602001018190525081830192508080600101915050610545565b5082945050505050919050565b60008082600001511180156105bd57506021826000015111155b6105c657600080fd5b60006105d5836020015161079b565b9050600081846000015103905060008083866020015101905080519150602083101561060857826020036101000a820491505b81945050505050919050565b6000601582600001511461062757600080fd5b610630826105a3565b9050919050565b6060600082600001511161064a57600080fd5b6000610659836020015161079b565b905060008184600001510390506060816040519080825280601f01601f19166020018201604052801561069b5781602001600182028038833980820191505090505b50905060008160200190506106b78487602001510182856108dc565b81945050505050919050565b600080823b905060008163ffffffff1611915050919050565b600080826000015114156106f35760009050610725565b60008083602001519050805160001a915060c060ff168260ff16101561071e57600092505050610725565b6001925050505b919050565b600080826000015114156107415760009050610796565b60008090506000610755846020015161079b565b84602001510190506000846000015185602001510190505b8082101561078f5761077e82610824565b82019150828060010193505061076d565b8293505050505b919050565b600080825160001a9050608060ff168110156107bb57600091505061081f565b60b860ff168110806107e0575060c060ff1681101580156107df575060f860ff1681105b5b156107ef57600191505061081f565b60c060ff1681101561080f5760018060b80360ff1682030191505061081f565b60018060f80360ff168203019150505b919050565b6000806000835160001a9050608060ff1681101561084557600191506108d2565b60b860ff16811015610862576001608060ff1682030191506108d1565b60c060ff168110156108925760b78103600185019450806020036101000a855104600182018101935050506108d0565b60f860ff168110156108af57600160c060ff1682030191506108cf565b60f78103600185019450806020036101000a855104600182018101935050505b5b5b5b8192505050919050565b60008114156108ea5761093e565b5b602060ff16811061091a5782518252602060ff1683019250602060ff1682019150602060ff16810390506108eb565b6000600182602060ff16036101000a03905080198451168184511681811785525050505b505050565b604051806040016040528060008152602001600081525090565b60405180604001604052806000815260200160008152509056fea265627a7a72315820af228b81e19dac46d14c24d264bde25d8a461d559c4e3cc82a5f1660755df35e64736f6c63430005110032" + }, + "0000000000000000000000000000000000001010": { + "balance": "0x204fcdf1d291a6d552c00000", + "code": "0x60806040526004361061019c5760003560e01c806377d32e94116100ec578063acd06cb31161008a578063e306f77911610064578063e306f77914610a7b578063e614d0d614610aa6578063f2fde38b14610ad1578063fc0c546a14610b225761019c565b8063acd06cb31461097a578063b789543c146109cd578063cc79f97b14610a505761019c565b80639025e64c116100c65780639025e64c146107c957806395d89b4114610859578063a9059cbb146108e9578063abceeba21461094f5761019c565b806377d32e94146106315780638da5cb5b146107435780638f32d59b1461079a5761019c565b806347e7ef24116101595780637019d41a116101335780637019d41a1461053357806370a082311461058a578063715018a6146105ef578063771282f6146106065761019c565b806347e7ef2414610410578063485cc9551461046b57806360f96a8f146104dc5761019c565b806306fdde03146101a15780631499c5921461023157806318160ddd1461028257806319d27d9c146102ad5780632e1a7d4d146103b1578063313ce567146103df575b600080fd5b3480156101ad57600080fd5b506101b6610b79565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023d57600080fd5b506102806004803603602081101561025457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bb6565b005b34801561028e57600080fd5b50610297610c24565b6040518082815260200191505060405180910390f35b3480156102b957600080fd5b5061036f600480360360a08110156102d057600080fd5b81019080803590602001906401000000008111156102ed57600080fd5b8201836020820111156102ff57600080fd5b8035906020019184600183028401116401000000008311171561032157600080fd5b9091929391929390803590602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c3a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103dd600480360360208110156103c757600080fd5b8101908080359060200190929190505050610e06565b005b3480156103eb57600080fd5b506103f4610f58565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041c57600080fd5b506104696004803603604081101561043357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f61565b005b34801561047757600080fd5b506104da6004803603604081101561048e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061111d565b005b3480156104e857600080fd5b506104f16111ec565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561053f57600080fd5b50610548611212565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561059657600080fd5b506105d9600480360360208110156105ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611238565b6040518082815260200191505060405180910390f35b3480156105fb57600080fd5b50610604611259565b005b34801561061257600080fd5b5061061b611329565b6040518082815260200191505060405180910390f35b34801561063d57600080fd5b506107016004803603604081101561065457600080fd5b81019080803590602001909291908035906020019064010000000081111561067b57600080fd5b82018360208201111561068d57600080fd5b803590602001918460018302840111640100000000831117156106af57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061132f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074f57600080fd5b506107586114b4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107a657600080fd5b506107af6114dd565b604051808215151515815260200191505060405180910390f35b3480156107d557600080fd5b506107de611534565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561081e578082015181840152602081019050610803565b50505050905090810190601f16801561084b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561086557600080fd5b5061086e61156d565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108ae578082015181840152602081019050610893565b50505050905090810190601f1680156108db5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610935600480360360408110156108ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115aa565b604051808215151515815260200191505060405180910390f35b34801561095b57600080fd5b506109646115d0565b6040518082815260200191505060405180910390f35b34801561098657600080fd5b506109b36004803603602081101561099d57600080fd5b810190808035906020019092919050505061165d565b604051808215151515815260200191505060405180910390f35b3480156109d957600080fd5b50610a3a600480360360808110156109f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919050505061167d565b6040518082815260200191505060405180910390f35b348015610a5c57600080fd5b50610a6561169d565b6040518082815260200191505060405180910390f35b348015610a8757600080fd5b50610a906116a3565b6040518082815260200191505060405180910390f35b348015610ab257600080fd5b50610abb6116a9565b6040518082815260200191505060405180910390f35b348015610add57600080fd5b50610b2060048036036020811015610af457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611736565b005b348015610b2e57600080fd5b50610b37611753565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60606040518060400160405280600b81526020017f4d6174696320546f6b656e000000000000000000000000000000000000000000815250905090565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f44697361626c656420666561747572650000000000000000000000000000000081525060200191505060405180910390fd5b6000601260ff16600a0a6402540be40002905090565b6000808511610c4857600080fd5b6000831480610c575750824311155b610cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5369676e6174757265206973206578706972656400000000000000000000000081525060200191505060405180910390fd5b6000610cd73387878761167d565b9050600015156005600083815260200190815260200160002060009054906101000a900460ff16151514610d73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f536967206465616374697661746564000000000000000000000000000000000081525060200191505060405180910390fd5b60016005600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610ded8189898080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061132f565b9150610dfa828488611779565b50509695505050505050565b60003390506000610e1682611238565b9050610e2d83600654611b3690919063ffffffff16565b600681905550600083118015610e4257508234145b610eb4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f496e73756666696369656e7420616d6f756e740000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f8584610f3087611238565b60405180848152602001838152602001828152602001935050505060405180910390a3505050565b60006012905090565b610f696114dd565b610f7257600080fd5b600081118015610faf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611f046023913960400191505060405180910390fd5b600061100f83611238565b905060008390508073ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505015801561105c573d6000803e3d6000fd5b5061107283600654611b5690919063ffffffff16565b6006819055508373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f685856110f489611238565b60405180848152602001838152602001828152602001935050505060405180910390a350505050565b600760009054906101000a900460ff1615611183576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611ee16023913960400191505060405180910390fd5b6001600760006101000a81548160ff02191690831515021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111e882611b75565b5050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008173ffffffffffffffffffffffffffffffffffffffff16319050919050565b6112616114dd565b61126a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b600080600080604185511461134a57600093505050506114ae565b602085015192506040850151915060ff6041860151169050601b8160ff16101561137557601b810190505b601b8160ff161415801561138d5750601c8160ff1614155b1561139e57600093505050506114ae565b60018682858560405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156113fb573d6000803e3d6000fd5b505050602060405103519350600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4572726f7220696e2065637265636f766572000000000000000000000000000081525060200191505060405180910390fd5b5050505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6040518060400160405280600281526020017f3a9900000000000000000000000000000000000000000000000000000000000081525081565b60606040518060400160405280600581526020017f4d41544943000000000000000000000000000000000000000000000000000000815250905090565b60008134146115bc57600090506115ca565b6115c7338484611779565b90505b92915050565b6040518060800160405280605b8152602001611f79605b91396040516020018082805190602001908083835b6020831061161f57805182526020820191506020810190506020830392506115fc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012081565b60056020528060005260406000206000915054906101000a900460ff1681565b600061169361168e86868686611c6d565b611d43565b9050949350505050565b613a9981565b60015481565b604051806080016040528060528152602001611f27605291396040516020018082805190602001908083835b602083106116f857805182526020820191506020810190506020830392506116d5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012081565b61173e6114dd565b61174757600080fd5b61175081611b75565b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000803073ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156117f957600080fd5b505afa15801561180d573d6000803e3d6000fd5b505050506040513d602081101561182357600080fd5b8101908080519060200190929190505050905060003073ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156118b557600080fd5b505afa1580156118c9573d6000803e3d6000fd5b505050506040513d60208110156118df57600080fd5b810190808051906020019092919050505090506118fd868686611d8d565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe6497e3ee548a3372136af2fcb0696db31fc6cf20260707645068bd3fe97f3c48786863073ffffffffffffffffffffffffffffffffffffffff166370a082318e6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a0557600080fd5b505afa158015611a19573d6000803e3d6000fd5b505050506040513d6020811015611a2f57600080fd5b81019080805190602001909291905050503073ffffffffffffffffffffffffffffffffffffffff166370a082318e6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611abd57600080fd5b505afa158015611ad1573d6000803e3d6000fd5b505050506040513d6020811015611ae757600080fd5b8101908080519060200190929190505050604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a46001925050509392505050565b600082821115611b4557600080fd5b600082840390508091505092915050565b600080828401905083811015611b6b57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611baf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806040518060800160405280605b8152602001611f79605b91396040516020018082805190602001908083835b60208310611cbf5780518252602082019150602081019050602083039250611c9c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405280519060200120905060405181815273ffffffffffffffffffffffffffffffffffffffff8716602082015285604082015284606082015283608082015260a0812092505081915050949350505050565b60008060015490506040517f190100000000000000000000000000000000000000000000000000000000000081528160028201528360228201526042812092505081915050919050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f63616e27742073656e6420746f204d524332300000000000000000000000000081525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e75573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe54686520636f6e747261637420697320616c726561647920696e697469616c697a6564496e73756666696369656e7420616d6f756e74206f7220696e76616c69642075736572454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429546f6b656e5472616e736665724f726465722861646472657373207370656e6465722c75696e7432353620746f6b656e49644f72416d6f756e742c6279746573333220646174612c75696e743235362065787069726174696f6e29a265627a7a723158205723157ad1c8ebb37fecace5dc0ce2dfa893ec59d46a1305ad694cd0170076ab64736f6c63430005110032" + }, + "71562b71999873DB5b286dF957af199Ec94617F7": { + "balance": "0x3635c9adc5dea00000" + }, + "9fB29AAc15b9A4B7F17c3385939b007540f4d791": { + "balance": "0x3635c9adc5dea00000" + } + }, + "number": "0x0", + "gasUsed": "0x0", + "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + \ No newline at end of file