From 67cc8cd6966806aab9fb2de1d2e7d7ead6a5c812 Mon Sep 17 00:00:00 2001 From: Ardit Marku Date: Wed, 5 Nov 2025 13:33:48 +0200 Subject: [PATCH] Enable EVM Fusaka hard-fork for PreviewNet & Testnet --- emulator/blockchain.go | 2 +- go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/emulator/blockchain.go b/emulator/blockchain.go index 1aa9b1d9..2cbd47ce 100644 --- a/emulator/blockchain.go +++ b/emulator/blockchain.go @@ -690,7 +690,7 @@ func configureFVM(blockchain *Blockchain, conf config, blocks *blocks) (*fvm.Vir fvm.WithReusableCadenceRuntimePool(customRuntimePool), fvm.WithEntropyProvider(blockchain.entropyProvider), fvm.WithEVMEnabled(true), - fvm.WithScheduledTransactionsEnabled(conf.ScheduledTransactionsEnabled), + fvm.WithScheduleCallbacksEnabled(conf.ScheduledTransactionsEnabled), } if !conf.TransactionValidationEnabled { diff --git a/go.mod b/go.mod index 637efc0f..3aa61e0d 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/onflow/cadence v1.8.3 github.com/onflow/crypto v0.25.3 github.com/onflow/flow-core-contracts/lib/go/templates v1.9.2 - github.com/onflow/flow-go v0.44.0-experimental-cadence-v1.8.3.0.20251117184523-ab0655178589 + github.com/onflow/flow-go v0.44.0 github.com/onflow/flow-go-sdk v1.9.2 github.com/onflow/flow-nft/lib/go/contracts v1.3.0 github.com/onflow/flow/protobuf/go/flow v0.4.18 diff --git a/go.sum b/go.sum index a4bf428f..eb2d839f 100644 --- a/go.sum +++ b/go.sum @@ -768,8 +768,8 @@ github.com/onflow/flow-ft/lib/go/contracts v1.0.1 h1:Ts5ob+CoCY2EjEd0W6vdLJ7hLL3 github.com/onflow/flow-ft/lib/go/contracts v1.0.1/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v1.0.1 h1:FDYKAiGowABtoMNusLuRCILIZDtVqJ/5tYI4VkF5zfM= github.com/onflow/flow-ft/lib/go/templates v1.0.1/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= -github.com/onflow/flow-go v0.44.0-experimental-cadence-v1.8.3.0.20251117184523-ab0655178589 h1:EqsUfh8MW4vOdWfXc1D8kKr4VBhRKsqeNCBeEWbw5Ew= -github.com/onflow/flow-go v0.44.0-experimental-cadence-v1.8.3.0.20251117184523-ab0655178589/go.mod h1:4A34mlMMd7usjw7e0r4VrltFpZRjhYkV+T+iecTbzO0= +github.com/onflow/flow-go v0.44.0 h1:I1P0t0+wUokyB4RHRLMGWy9QMf4jWg6EFcttKNtU0Rw= +github.com/onflow/flow-go v0.44.0/go.mod h1:4A34mlMMd7usjw7e0r4VrltFpZRjhYkV+T+iecTbzO0= github.com/onflow/flow-go-sdk v1.9.2 h1:kMw3qShgLNIASHGMgoY+faTBQ+1MnzsNLAH+oxy9eiY= github.com/onflow/flow-go-sdk v1.9.2/go.mod h1:qVuzMGXNJBMktKnIDKLjV0/k21P2XD39dOfMW+X5Bsc= github.com/onflow/flow-nft/lib/go/contracts v1.3.0 h1:DmNop+O0EMyicZvhgdWboFG57xz5t9Qp81FKlfKyqJc=