1 Star 0 Fork 0

陈文甲/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package msptesttools
import (
"github.com/hyperledger/fabric/common/util"
"github.com/hyperledger/fabric/core/config/configtest"
"github.com/hyperledger/fabric/msp"
"github.com/hyperledger/fabric/msp/mgmt"
)
// LoadTestMSPSetup sets up the local MSP
// and a chain MSP for the default chain
func LoadMSPSetupForTesting() error {
dir, err := configtest.GetDevMspDir()
if err != nil {
return err
}
conf, err := msp.GetLocalMspConfig(dir, nil, "SampleOrg")
if err != nil {
return err
}
err = mgmt.GetLocalMSP().Setup(conf)
if err != nil {
return err
}
err = mgmt.GetManagerForChain(util.GetTestChainID()).Setup([]msp.MSP{mgmt.GetLocalMSP()})
if err != nil {
return err
}
return nil
}
// Loads the development local MSP for use in testing. Not valid for production/runtime context
func LoadDevMsp() error {
mspDir, err := configtest.GetDevMspDir()
if err != nil {
return err
}
return mgmt.LoadLocalMsp(mspDir, nil, "SampleOrg")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/venjia/fabric.git
git@gitee.com:venjia/fabric.git
venjia
fabric
fabric
v1.4.2

搜索帮助