Я пытаюсь обновить и актив в Hyperledger, в этом случае я пытаюсь добавить нового провайдера в список массивов провайдеров в активе, но композитор не позволяет мне.
Я не знаю, что не так. Belor - это модель, javascript и ошибка.
Модель:
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace org.acme.Bicycle
asset Bicycle identified by serial {
o String serial
--> Rider owner optional
--> Rider [] ownerold optional
--> Provider [] distribuold optional
--> Store [] Storeold optional
--> Manufacturing manufacturing
}
abstract participant User identified by email {
o String email
o String firstName
o String lastName
}
participant Rider extends User {
}
participant Manufacturing extends User {
}
participant Provider extends User {
}
participant Store extends User {
}
participant Police extends User {
}
transaction check {
o String date
o String Description
--> Rider owner
--> Police police
--> Bicycle bike
}
transaction fabrictodistri {
o String Description
--> Manufacturing manufacturing
--> Bicycle bike
--> Provider providerstore
}
transaction providertostore {
o String Description
--> Bicycle bike
--> Provider providerstore
--> Store Storeold
}
transaction storetobiker {
o String Description
--> Bicycle bike
--> Store Storeold
--> Rider owner
}
Файл скрипта: здесь все мои функции
/**
* @param {org.acme.Bicycle.check} check
* @transaction
*/
async function check(check) {
let owner = check.bike.owner.email;
let ciclista = check.owner.email;
if(owner != ciclista){
check.description= "This is not the owner";
throw new Error('This is not the owner');
}else{
check.description= "This is the owner";
throw new Error('This is not the owner');
}
}
/**
* @param {org.acme.Bicycle.fabrictodistri} ftod
* @transaction
*/
async function fabrictodistri(ftod) {
let bike = ftod.bike;
bike.distribuold.push(ftod.providerstore);
}
/**
* @param {org.acme.Bicycle.providertostore} ptosto
* @transaction
*/
async function providertostore(ptosto) {
let bike = ptosto.bike;
bike.distribuold.push(ptosto.providerstore);
bike.Storeold.push(ptosto.Storeold);
}
/**
* @param {org.acme.Bicycle.storetobiker} stostobik
* @transaction
*/
async function storetobiker(stostobik) {
let bike = stostobik.bike;
bike.ownerold.push(stostobik.owner);
bike.owner = stostobik.owner;
}
Ошибка: «Ошибка типа: невозможно прочитать свойство« push »из неопределенного» * 1011 *
Изображение