From 968bd48c87de614da9a50b6b86dc839b274ce9a7 Mon Sep 17 00:00:00 2001 From: "Grzegorz Bazior (Yodiss PSA)" Date: Sat, 10 Feb 2024 18:06:00 +0100 Subject: [PATCH] Implement addition of new parameters to Iroha Core for enhanced message communication, with corresponding handling capabilities in Iroha CLI. Signed-off-by: dominious1 --- src/proto/commands_pb.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/proto/commands_pb.d.ts b/src/proto/commands_pb.d.ts index af2fbabc..90b94b9d 100644 --- a/src/proto/commands_pb.d.ts +++ b/src/proto/commands_pb.d.ts @@ -11,6 +11,9 @@ export class AddAssetQuantity extends jspb.Message { getAmount(): string; setAmount(value: string): void; + getDescription(): string; + setDescription(value: string): void; + serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): AddAssetQuantity.AsObject; static toObject(includeInstance: boolean, msg: AddAssetQuantity): AddAssetQuantity.AsObject; @@ -25,6 +28,7 @@ export namespace AddAssetQuantity { export type AsObject = { assetId: string, amount: string, + description: string, } } @@ -415,6 +419,9 @@ export class SubtractAssetQuantity extends jspb.Message { getAmount(): string; setAmount(value: string): void; + getDescription(): string; + setDescription(value: string): void; + serializeBinary(): Uint8Array; toObject(includeInstance?: boolean): SubtractAssetQuantity.AsObject; static toObject(includeInstance: boolean, msg: SubtractAssetQuantity): SubtractAssetQuantity.AsObject; @@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity { export type AsObject = { assetId: string, amount: string, + description: string, } }