From e061f469d351cb5d29fceb3823ec0c289c43809c Mon Sep 17 00:00:00 2001 From: "alex.sharov" Date: Mon, 23 Jan 2023 18:56:20 +0700 Subject: [PATCH] e3: fix test --- cmd/rpcdaemon/commands/eth_subscribe_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/rpcdaemon/commands/eth_subscribe_test.go b/cmd/rpcdaemon/commands/eth_subscribe_test.go index 9ad87b8d289..192317e55d9 100644 --- a/cmd/rpcdaemon/commands/eth_subscribe_test.go +++ b/cmd/rpcdaemon/commands/eth_subscribe_test.go @@ -22,6 +22,9 @@ import ( func TestEthSubscribe(t *testing.T) { m, require := stages.Mock(t), require.New(t) + if m.HistoryV3 { + t.Skip() + } br := snapshotsync.NewBlockReaderWithSnapshots(m.BlockSnapshots) chain, err := core.GenerateChain(m.ChainConfig, m.Genesis, m.Engine, m.DB, 7, func(i int, b *core.BlockGen) { b.SetCoinbase(libcommon.Address{1})