You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updated proto files and ts clients, fixed MsgClaimMorseSupplier handler and added missing values to the following enums ApplicationUnbondingReason, SupplierUnbondingReason
Copy file name to clipboardExpand all lines: proto/pocket/application/types.proto
+27-13Lines changed: 27 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
// TODO_AUTOMATE: Add a CI workflow which detects .proto files with incompatible names (i.e. same as the package).
2
-
// NB: This file CANNOT be named "application.proto" due to an as of yet unidentified
3
-
// issue in how cosmos-proto generates the pulsar plugin output go source code.
1
+
// TODO_AUTOMATE: Add a CI workflow that automatically detects .proto files with names incompatible with the package name (e.g., files named exactly as the package, like "application.proto").
2
+
// NB: This file CANNOT be named "application.proto" due to an unresolved issue in how cosmos-proto generates the pulsar plugin output Go source code.
3
+
// See: https://github.com/pokt-network/poktroll/issues/XXX for tracking and future resolution.
4
4
5
5
syntax="proto3";
6
6
packagepocket.application;
@@ -23,23 +23,24 @@ message Application {
23
23
cosmos.base.v1beta1.Coinstake=2;
24
24
25
25
// CRITICAL: Must contain EXACTLY ONE service config
26
-
// This prevents applications from over-servicing.
27
-
// Kept as repeated field for legacy and future compatibility
28
-
// Refs:
26
+
// - Enforces a single service configuration per application to prevent over-servicing.
27
+
// - Field is repeated for legacy reasons and potential future compatibility.
// TODO_MAINNET_MIGRATION(@bryanchriswhite): Rename `delegatee_gateway_addresses` to `gateway_addresses_delegated_to`.
34
-
// Ensure to rename all relevant configs, comments, variables, function names, etc as well.
35
-
// Non-nullable list of Bech32encoded delegatee Gateway addresses
33
+
// TODO_MAINNET_MIGRATION(@bryanchriswhite): Rename `delegatee_gateway_addresses` to `gateway_addresses_delegated_to` for better clarity and consistency.
34
+
// - Update all related configs, comments, variables, and function names throughout the codebase to reflect this change.
35
+
// - This field is a non-nullable list of Bech32-encoded delegatee Gateway addresses.
0 commit comments