Skip to content

Commit

Permalink
Implement addition of new parameters to Iroha Core for enhanced mess…
Browse files Browse the repository at this point in the history
…age communication, with corresponding handling capabilities in Iroha CLI.

Signed-off-by: dominious1 <[email protected]>
  • Loading branch information
Grzegorz Bazior (Yodiss PSA) authored and dominious1 committed Feb 10, 2024
1 parent 72ab5b6 commit 968bd48
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/proto/commands_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -25,6 +28,7 @@ export namespace AddAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
description: string,
}
}

Expand Down Expand Up @@ -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;
Expand All @@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
description: string,
}
}

Expand Down

0 comments on commit 968bd48

Please sign in to comment.