Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用GoLangSDK 与链代码中的 Fabric 网络进行交互,但我找不到从交易 ID 获取证书以找出谁签署交易的方法。
GoLang
对于客户端 SDK,您可以使用QueryTransaction在这里找到ProcessedTransaction的,它根据 tx id返回一个对象。这将包含交易签名者的信息。该对象将如下所示。然后,您使用此函数中的对象来获取交易信封,最后使用GetSignature函数。这将返回字节,因此您必须转换为字符串。
QueryTransaction
ProcessedTransaction
GetSignature