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.