1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tms.go 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2018-09-24 15:44 . [FAB-12155] IssuerValidator Impl
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package transaction
import (
"github.com/hyperledger/fabric/protos/token"
"github.com/hyperledger/fabric/token/identity"
"github.com/hyperledger/fabric/token/ledger"
)
//go:generate counterfeiter -o mock/tms_tx_processor.go -fake-name TMSTxProcessor . TMSTxProcessor
//go:generate counterfeiter -o mock/tms_manager.go -fake-name TMSManager . TMSManager
// TMSTxProcessor is used to generate the read-dependencies of a token transaction
// (read-set) along with the ledger updates triggered by that transaction
// (write-set); read-write sets are returned implicitly via the simulator object
// that is passed as parameter in the Commit function
type TMSTxProcessor interface {
// ProcessTx parses ttx to generate a RW set
ProcessTx(txID string, creator identity.PublicInfo, ttx *token.TokenTransaction, simulator ledger.LedgerWriter) error
}
type TMSManager interface {
// GetTxProcessor returns a TxProcessor for TMS transactions for the provided channel
GetTxProcessor(channel string) (TMSTxProcessor, error)
}
type TxCreatorInfo struct {
public []byte
}
func (t *TxCreatorInfo) Public() []byte {
return t.public
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v2.0.0-alpha

搜索帮助

0d507c66 1850385 C8b1a773 1850385