Skip to content

Commit 968bd48

Browse files
Grzegorz Bazior (Yodiss PSA)dominious1
Grzegorz Bazior (Yodiss PSA)
authored andcommitted
Implement addition of new parameters to Iroha Core for enhanced message communication, with corresponding handling capabilities in Iroha CLI.
Signed-off-by: dominious1 <piotr567@proton.me>
1 parent 72ab5b6 commit 968bd48

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/proto/commands_pb.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export class AddAssetQuantity extends jspb.Message {
1111
getAmount(): string;
1212
setAmount(value: string): void;
1313

14+
getDescription(): string;
15+
setDescription(value: string): void;
16+
1417
serializeBinary(): Uint8Array;
1518
toObject(includeInstance?: boolean): AddAssetQuantity.AsObject;
1619
static toObject(includeInstance: boolean, msg: AddAssetQuantity): AddAssetQuantity.AsObject;
@@ -25,6 +28,7 @@ export namespace AddAssetQuantity {
2528
export type AsObject = {
2629
assetId: string,
2730
amount: string,
31+
description: string,
2832
}
2933
}
3034

@@ -415,6 +419,9 @@ export class SubtractAssetQuantity extends jspb.Message {
415419
getAmount(): string;
416420
setAmount(value: string): void;
417421

422+
getDescription(): string;
423+
setDescription(value: string): void;
424+
418425
serializeBinary(): Uint8Array;
419426
toObject(includeInstance?: boolean): SubtractAssetQuantity.AsObject;
420427
static toObject(includeInstance: boolean, msg: SubtractAssetQuantity): SubtractAssetQuantity.AsObject;
@@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity {
429436
export type AsObject = {
430437
assetId: string,
431438
amount: string,
439+
description: string,
432440
}
433441
}
434442

0 commit comments

Comments
 (0)