Skip to content

Commit b9c88dc

Browse files
fix: skip TestConflictingImportTxsAcrossBlocks if using Firewood (#5018)
1 parent 09a9530 commit b9c88dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

graft/coreth/plugin/evm/atomic/vm/vm_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import (
4040
"github.com/ava-labs/avalanchego/utils/units"
4141
"github.com/ava-labs/avalanchego/vms/components/avax"
4242
"github.com/ava-labs/avalanchego/vms/components/chain"
43+
"github.com/ava-labs/avalanchego/vms/evm/sync/customrawdb"
4344
"github.com/ava-labs/avalanchego/vms/secp256k1fx"
4445

4546
avalancheatomic "github.com/ava-labs/avalanchego/chains/atomic"
@@ -263,6 +264,11 @@ func testIssueAtomicTxs(t *testing.T, scheme string) {
263264
}
264265

265266
func testConflictingImportTxs(t *testing.T, fork upgradetest.Fork, scheme string) {
267+
// TODO: https://github.com/ava-labs/firewood/issues/1679
268+
if scheme == customrawdb.FirewoodScheme {
269+
t.Skip("firewood currently fails due to a stack corruption issue")
270+
}
271+
266272
require := require.New(t)
267273
importAmount := uint64(10000000)
268274
vm := newAtomicTestVM()

0 commit comments

Comments
 (0)