63 Star 181 Fork 3

Gitee 极速下载 / hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
helper.go 2.98 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package test
import (
cb "github.com/hyperledger/fabric-protos-go/common"
mspproto "github.com/hyperledger/fabric-protos-go/msp"
"github.com/hyperledger/fabric-protos-go/peer"
pb "github.com/hyperledger/fabric-protos-go/peer"
"github.com/hyperledger/fabric/common/channelconfig"
"github.com/hyperledger/fabric/common/flogging"
"github.com/hyperledger/fabric/common/genesis"
"github.com/hyperledger/fabric/core/config/configtest"
"github.com/hyperledger/fabric/core/ledger/util"
"github.com/hyperledger/fabric/internal/configtxgen/encoder"
"github.com/hyperledger/fabric/internal/configtxgen/genesisconfig"
"github.com/hyperledger/fabric/protoutil"
)
var logger = flogging.MustGetLogger("common.configtx.test")
// MakeGenesisBlock creates a genesis block using the test templates for the given chainID
func MakeGenesisBlock(chainID string) (*cb.Block, error) {
profile := genesisconfig.Load(genesisconfig.SampleDevModeSoloProfile, configtest.GetDevConfigDir())
channelGroup, err := encoder.NewChannelGroup(profile)
if err != nil {
logger.Panicf("Error creating channel config: %s", err)
}
gb := genesis.NewFactoryImpl(channelGroup).Block(chainID)
if gb == nil {
return gb, nil
}
txsFilter := util.NewTxValidationFlagsSetValue(len(gb.Data.Data), peer.TxValidationCode_VALID)
gb.Metadata.Metadata[cb.BlockMetadataIndex_TRANSACTIONS_FILTER] = txsFilter
return gb, nil
}
// MakeGenesisBlockWithMSPs creates a genesis block using the MSPs provided for the given chainID
func MakeGenesisBlockFromMSPs(chainID string, appMSPConf, ordererMSPConf *mspproto.MSPConfig, appOrgID, ordererOrgID string) (*cb.Block, error) {
profile := genesisconfig.Load(genesisconfig.SampleDevModeSoloProfile, configtest.GetDevConfigDir())
profile.Orderer.Organizations = nil
channelGroup, err := encoder.NewChannelGroup(profile)
if err != nil {
logger.Panicf("Error creating channel config: %s", err)
}
ordererOrg := protoutil.NewConfigGroup()
ordererOrg.ModPolicy = channelconfig.AdminsPolicyKey
ordererOrg.Values[channelconfig.MSPKey] = &cb.ConfigValue{
Value: protoutil.MarshalOrPanic(channelconfig.MSPValue(ordererMSPConf).Value()),
ModPolicy: channelconfig.AdminsPolicyKey,
}
applicationOrg := protoutil.NewConfigGroup()
applicationOrg.ModPolicy = channelconfig.AdminsPolicyKey
applicationOrg.Values[channelconfig.MSPKey] = &cb.ConfigValue{
Value: protoutil.MarshalOrPanic(channelconfig.MSPValue(appMSPConf).Value()),
ModPolicy: channelconfig.AdminsPolicyKey,
}
applicationOrg.Values[channelconfig.AnchorPeersKey] = &cb.ConfigValue{
Value: protoutil.MarshalOrPanic(channelconfig.AnchorPeersValue([]*pb.AnchorPeer{}).Value()),
ModPolicy: channelconfig.AdminsPolicyKey,
}
channelGroup.Groups[channelconfig.OrdererGroupKey].Groups[ordererOrgID] = ordererOrg
channelGroup.Groups[channelconfig.ApplicationGroupKey].Groups[appOrgID] = applicationOrg
return genesis.NewFactoryImpl(channelGroup).Block(chainID), nil
}
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v2.1.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891