@@ -87,6 +87,8 @@ FixFailAckPackageHeight = {{ .UpgradeConfig.FixFailAckPackageHeight }}
8787EnableAccountScriptsForCrossChainTransferHeight = {{ .UpgradeConfig.EnableAccountScriptsForCrossChainTransferHeight }}
8888# Block height of BEP128 upgrade
8989BEP128Height = {{ .UpgradeConfig.BEP128Height }}
90+ # Block height of BEP151 upgrade
91+ BEP151Height = {{ .UpgradeConfig.BEP151Height }}
9092
9193[query]
9294# ABCI query interface black list, suggested value: ["custom/gov/proposals", "custom/timelock/timelocks", "custom/atomicSwap/swapcreator", "custom/atomicSwap/swaprecipient"]
@@ -526,6 +528,7 @@ type UpgradeConfig struct {
526528 FixFailAckPackageHeight int64 `mapstructure:"FixFailAckPackageHeight"`
527529 EnableAccountScriptsForCrossChainTransferHeight int64 `mapstructure:"EnableAccountScriptsForCrossChainTransferHeight"`
528530 BEP128Height int64 `mapstructure:"BEP128Height"`
531+ BEP151Height int64 `mapstructure:"BEP151Height"`
529532}
530533
531534func defaultUpgradeConfig () * UpgradeConfig {
@@ -546,6 +549,7 @@ func defaultUpgradeConfig() *UpgradeConfig {
546549 BEP70Height : 1 ,
547550 LaunchBscUpgradeHeight : 1 ,
548551 BEP128Height : math .MaxInt64 ,
552+ BEP151Height : math .MaxInt64 ,
549553 BEP82Height : math .MaxInt64 ,
550554 BEP84Height : math .MaxInt64 ,
551555 BEP87Height : math .MaxInt64 ,
0 commit comments