1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
policies.go 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package commonext
import (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric-protos-go/common"
)
type Policy struct{ *common.Policy }
func (p *Policy) Underlying() proto.Message {
return p.Policy
}
func (p *Policy) VariablyOpaqueFields() []string {
return []string{"value"}
}
func (p *Policy) VariablyOpaqueFieldProto(name string) (proto.Message, error) {
if name != p.VariablyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
switch p.Type {
case int32(common.Policy_SIGNATURE):
return &common.SignaturePolicyEnvelope{}, nil
case int32(common.Policy_IMPLICIT_META):
return &common.ImplicitMetaPolicy{}, nil
default:
return nil, fmt.Errorf("unable to decode policy type: %v", p.Type)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v2.1.0

搜索帮助