- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用事务更改参与者的值。它抛出错误“错误:ID 为‘$sysregistries’的集合中 ID 为‘Participant:com.test.participant’的对象不存在”
请让我知道是什么问题。新版本有什么变化吗??
基地首席技术官:
namespace com.test.base
enum Gender {
o MALE
o FEMALE
o OTHER
}
/**
* A concept for a simple street address
*/
concept Address {
o String address
o Boolean isAddressValidated
}
参与首席技术官:
/**
* New model file
*/
namespace com.test.participant
import com.test.base.*
abstract participant User{
o String lastname
}
participant Customer identified by userId extends User {
o String userId
o String fName
o Address address
}
transaction ValidateAddress {
o Boolean isAddressValidated
--> Customer customer
}
Js文件:
/**
* Sample transaction processor function.
* @param {com.test.participant.ValidateAddress} tx The sample transaction instance.
* @transaction
*/
async function sampleTransaction(tx) {
tx.customer.address.isAddressValidated = tx.isAddressValidated;
const participantRegistry = await getParticipantRegistry('com.test.participant','Costumer');
await participantRegistry.update(tx.customer);
}
测试值:
{
"$class": "com.test.participant.Customer",
"uId": "customer1",
"fName": "Pradeep",
"address": {
"$class": "com.test.base.Address",
"address": "",
"isAddressValidated": false
},
"lastname": "P"
}
{
"$class": "com.test.participant.ValidateAddress",
"isAddressValidated": true,
"customer": "resource:com.test.participant.Customer#customer1"
}
在链接中同时下载bna文件 https://drive.google.com/file/d/1NQYELmLzMyuN2V4yvDhUoLWackjs18Fa/view?usp=sharing
最佳答案
我在你的网络定义中编辑了两个
东西,注意:我在 Hyperldger Playground 上测试了它并且它有效
uId
更改为 userId
所以我在所有更改之后想出了这段代码
namespace com.test.base
enum Gender {
o MALE
o FEMALE
o OTHER
}
/**
* A concept for a simple street address
*/
concept Address {
o String address
o Boolean isAddressValidated
}
/**
* New model file
*/
namespace com.test.participant
import com.test.base.*
abstract participant User{
o String lastname
}
participant Customer identified by userId extends User {
o String userId
o String fName
o Address address
}
transaction ValidateAddress {
o Boolean isAddressValidated
--> Customer customer
}
测试数据如下
{
"$class": "com.test.participant.Customer",
"userId": "customer1",
"fName": "Pradeep",
"address": {
"$class": "com.test.base.Address",
"address": "New York",
"isAddressValidated": true
},
"lastname": "P"
}
对于交易我没有改变任何东西。希望对您有所帮助
关于hyperledger-composer - 错误 : Object with ID 'Participant:com.test.participant' in collection with ID '$sysregistries' does not exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50735957/
我正在尝试使用事务更改参与者的值。它抛出错误“错误:ID 为‘$sysregistries’的集合中 ID 为‘Participant:com.test.participant’的对象不存在” 请让我
我有一个 java 对象,类 Object 的实例 - 这就是我所知道的。现在我需要创建一个参与其创建的 Class 列表,包括它自己的类、所有父类、它的属性和方法的所有类。例如: List obj
考虑这个 ER 图 我们有被录取参加考试的学生,每个考试可以分成多个运行(例如,将大组分成多个房间或直接连续地为同一考试进行两个运行) .是否有可能(通过数据库约束)确保学生只参加属于他们被录取的考试
我有一个 RTP session 的参与者,我需要从该参与者那里获取 IP 地址。 我该怎么做? 应一位回答者的要求,我的导入: import java.io.IOException; import
我正在开发一款回合制 iOS 游戏,但遇到了一个奇怪的错误。当我实际验证我确实是当前参与者时,它说我不是当前参与者。在这里,我检查我是否是当前参与者,这会输出“相等”,但是当我尝试结束我的回合时,它会
当我们处理异步任务时,任务由多个方法调用(可能是其他类)组成,而这些方法调用又由进一步的方法调用组成。我们可以称它为一棵树。是否所有方法都必须是异步任务类型才能使原始任务真正表现出异步?答案是否适用于
所以,在这个学期我开始学习 DBMS,前两章是关于 ER 系统的。但是,即使我了解什么是弱实体以及完全参与的定义,我也发现很难区分在实践中使用什么。例如 在这个简单的例子中,我无法理解为什么餐厅不是一
本文整理了Java中org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManager类的一些代码示例,展示了XTSATRecover
我的数据库是这样的: Firm Agreement id Year Cusip_focal participants_cusips Abbott Lab 3947
我进行了很多搜索,并尝试了很多东西。让我们从 this question 中获取相同的场景. Bob、Alice 和 Jane 正在开会。我希望 Bob(房间的主持人)能够使 Alice 静音,这样来
我正在尝试在网页上创建 Skype 链接,该链接开始与多个参与者聊天。根据Skype URL API reference , URL 中的参与者要用分号分隔。但是,以下代码根本不起作用: Sta
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
当我尝试在 Sandbox Game Center 回合制游戏中发送回合时,偶尔会收到以下错误。 Error Domain=GKErrorDomain Code=23 "The requested o
我想知道什么时候可以安全地从集群中的机器上删除节点。 我的假设是,如果机器没有任何容器,并且它不存储任何有用的数据,那么移除机器可能是安全的。 通过https://hadoop.apache.org/
在尝试编译一个存储“参与者”的简单链表时,我遇到了一个非常奇怪的错误。然而,我显然给了它正确的数据,可以确认,因为它在不使用初始化列表时有效(执行赋值运算符“=”)。 下面是相关的代码块: struc
我制作了一款与 Swift 2 完美配合的回合制游戏。我可以成功地将代码更改为 swift 3.2 并更正所有关于 400 的错误,但是游戏中心有一个问题我不知道如何修复它。当通过 gamecente
本文整理了Java中org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManager.isParticipantRecoverySt
本文整理了Java中org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManager.setRecoveryManager()方法的
本文整理了Java中org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManager.isSubordinateCoordinato
本文整理了Java中org.jboss.jbossts.xts.recovery.participant.at.XTSATRecoveryManager.deleteParticipantRecove
我是一名优秀的程序员,十分优秀!