增加脚本相关表

This commit is contained in:
刘祥超
2022-03-25 14:11:17 +08:00
parent 5f793f1f76
commit 65b4832c94
10 changed files with 91 additions and 1 deletions

View File

@@ -955,6 +955,12 @@ func (this *NodeDAO) ComposeNodeConfig(tx *dbs.Tx, nodeId int64, cacheMap *utils
}
config.OCSPVersion = ocspVersion
// 初始化扩展配置
err = this.composeExtConfig(tx, config, cacheMap)
if err != nil {
return nil, err
}
return config, nil
}