From edf6f18f8cb831aa509d2436de9a4e91d56eb055 Mon Sep 17 00:00:00 2001 From: lumtis Date: Fri, 22 Nov 2024 13:12:31 +0100 Subject: [PATCH] disable precompile --- precompiles/precompiles.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/precompiles/precompiles.go b/precompiles/precompiles.go index 24d574695d..95cacbac39 100644 --- a/precompiles/precompiles.go +++ b/precompiles/precompiles.go @@ -21,9 +21,9 @@ import ( // This is useful for listing and reading from other packages, such as BlockedAddrs() function. // Setting to false a contract here will disable it, not being included in the blockchain. var EnabledStatefulContracts = map[common.Address]bool{ - prototype.ContractAddress: true, - staking.ContractAddress: true, - bank.ContractAddress: true, + prototype.ContractAddress: false, + staking.ContractAddress: false, + bank.ContractAddress: false, } // StatefulContracts returns all the registered precompiled contracts.