我想在使用Input State之前从公证服务流触发外部网络中的事务。该示例是一个托管服务,它触发对Hedera Hashgraph上的Depository: Corda & Depository上的Depository的通知。
但是公证流没有从Contract State读取属性的权限。有没有办法将自定义属性发送/广播到公证人?
提前谢谢你。
发布于 2020-08-01 02:50:37
如果您将公证人设置为验证公证人,它将有权访问所有交易组件(请参阅here)。
要将您的公证人设置为验证,请在其node.conf (取自this sample)中设置以下配置:
notary {
validating = true
}https://stackoverflow.com/questions/63197146
复制相似问题