查询超级账本历史学家的问题



我正在开发Hyperledger作曲家应用程序,我想将所有与交易相关的数据(如交易类型,交易ID和时间戳(提供给参与的特定利益相关者。我创建了以下查询以从历史学家那里获取数据。

query getFromHistorian {
description:"get user transactions"
statement:
SELECT org.hyperledger.composer.system.HistorianRecord
WHERE (participantInvoking == _$stakeholder)
}  

但是当我通过使用 REST API 提供利益相关者 ID 来执行此查询时,它会提供空响应正文。我该如何修复它,我做了正确的事情吗?

您必须确保当前参与者有权读取 permissons.acl 文件中的历史学家,否则查询将始终返回空数组。

rule ParticipantWhoCanReadHistorian {
description: "this type of participants can read HistorianRecord to the Historian"
participant: "the participant name space"
operation: READ
resource: "org.hyperledger.composer.system.HistorianRecord"
action: ALLOW  
}

相关内容

  • 没有找到相关文章

最新更新