新注册的用户请输入邮箱并保存,随后登录邮箱激活账号。后续可直接使用邮箱登录!

Commit 276d7dfd authored by 志宏 蔡's avatar 志宏 蔡

fix combine v2.2.3_qc into v220 dir. --bug=1004000

parent 33b14b25
...@@ -215,6 +215,8 @@ func useHistoryContract220(contractName string) bool { ...@@ -215,6 +215,8 @@ func useHistoryContract220(contractName string) bool {
return true return true
case syscontract.SystemContract_PUBKEY_MANAGE.String(): case syscontract.SystemContract_PUBKEY_MANAGE.String():
return true return true
case syscontract.SystemContract_CONTRACT_MANAGE.String():
return true
default: default:
return false return false
} }
......
This diff is collapsed.
/*
* Copyright (C) BABEC. All rights reserved.
* Copyright (C) THL A29 Limited, a Tencent company. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package contractmgr
import "errors"
var (
errContractExist = errors.New("contract exist")
errContractInitFail = errors.New("contract initial fail")
errContractUpgradeFail = errors.New("contract upgrade fail")
errContractNotExist = errors.New("contract not exist")
errContractVersionExist = errors.New("contract version exist")
errContractStatusInvalid = errors.New("contract status invalid")
errInvalidContractName = errors.New("invalid contract name")
errInvalidEvmContractName = errors.New("invalid EVM contract name")
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment