From 217ecb0966623dade1b7d81e2256ccdc748b6898 Mon Sep 17 00:00:00 2001 From: dominious1 Date: Tue, 31 Oct 2023 22:18:36 +0100 Subject: [PATCH] Add title as optional --- shared_model/schema/commands.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared_model/schema/commands.proto b/shared_model/schema/commands.proto index 30c519c0e88..ebb3009dbb2 100644 --- a/shared_model/schema/commands.proto +++ b/shared_model/schema/commands.proto @@ -13,7 +13,7 @@ import "primitive.proto"; message AddAssetQuantity { string asset_id = 1; string amount = 2; - string title = 3; + optional string title = 3; } message AddPeer {