Skip to content

Commit

Permalink
added ticket stamp feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Raviramnani1 committed Aug 22, 2024
1 parent 3843417 commit 9a81fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallet/lib/services/data_stores/remote_data_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ class RemoteDataStoreImp implements RemoteDataStore {
final recipeProto3Json = recipe.toProto3Json()! as Map;
recipeProto3Json.remove(kCreatedAtCamelCase);
recipeProto3Json.remove(kUpdatedAtCamelCase);
recipeProto3Json.putIfAbsent("isStamped", true)
recipeProto3Json.putIfAbsent("isStamped", true as Function());

final msgUpdateRecipe = pylons.MsgUpdateRecipe.create()..mergeFromProto3Json(recipeProto3Json);
msgUpdateRecipe.version = msgUpdateRecipe.version.incrementRecipeVersion();
Expand Down

0 comments on commit 9a81fee

Please sign in to comment.