From 17cafa246fa3941ca2327cfcfd5ab098da21422f Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Thu, 18 Dec 2025 00:03:24 +0300 Subject: [PATCH] neotest: allow multichain creation with custom native contracts Signed-off-by: Pavel Karpy --- pkg/neotest/chain/chain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/neotest/chain/chain.go b/pkg/neotest/chain/chain.go index 2b2ad4ce49..8d6edbc830 100644 --- a/pkg/neotest/chain/chain.go +++ b/pkg/neotest/chain/chain.go @@ -285,7 +285,7 @@ func NewMultiWithOptionsNoCheck(t testing.TB, options *Options) (*core.Blockchai logger = zaptest.NewLogger(t) } - bc, err := core.NewBlockchain(store, bcfg, logger) + bc, err := core.NewBlockchain(store, bcfg, logger, options.NewNatives) if err == nil && !options.SkipRun { go bc.Run() t.Cleanup(bc.Close)