diff --git a/Dockerfile b/Dockerfile index df79f9de7..ccba0372b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,4 +35,4 @@ EXPOSE 26656 26657 1317 9090 8545 8546 # Every 30s, allow 3 retries before failing, timeout after 30s. HEALTHCHECK --interval=30s --timeout=30s --retries=3 CMD curl -f http://localhost:26657/health || exit 1 -CMD ["exocored"] +CMD ["exocored"] \ No newline at end of file diff --git a/proto/exocore/avs/v1/genesis.proto b/proto/exocore/avs/v1/genesis.proto index d001bc43d..e4d97e25b 100644 --- a/proto/exocore/avs/v1/genesis.proto +++ b/proto/exocore/avs/v1/genesis.proto @@ -37,14 +37,14 @@ message GenesisState { } - +// TaskID is helper structure to store the task id information for the genesis state. message TaskID { // task_addr is the address of task as a hex string string task_addr = 1; // id of task. uint64 task_id = 3; } - +// ChallengeInfo is helper structure to store the task challenge information for the genesis state. message ChallengeInfo { // key is used for storing the ChallengeInfos, // which is a combination of the operator address ,task address and task id. @@ -52,7 +52,7 @@ message ChallengeInfo { // challenge_addr is the address of the challenger string challenge_addr = 2; } - +// ChainIDInfo is helper structure to store the dogfood ChainID information for the genesis state. message ChainIDInfo { // avs_address is the address of avs as a hex string. string avs_address = 1; diff --git a/proto/exocore/feedistribution/v1/genesis.proto b/proto/exocore/feedistribution/v1/genesis.proto index dc988dec4..2f775c40e 100644 --- a/proto/exocore/feedistribution/v1/genesis.proto +++ b/proto/exocore/feedistribution/v1/genesis.proto @@ -35,7 +35,7 @@ message GenesisState { } - +// ValidatorAccumulatedCommissions is helper structure to store the validator accumulated commissions for the genesis state. message ValidatorAccumulatedCommissions { // val_addr is the address of validator string val_addr = 1; @@ -44,7 +44,7 @@ message ValidatorAccumulatedCommissions { // for a validator kept as a running counter, can be withdrawn at any time. ValidatorAccumulatedCommission commission = 2; } - +// ValidatorCurrentRewardsList is helper structure to store the validator current rewards for the genesis state. message ValidatorCurrentRewardsList { // val_addr is the address of validator string val_addr = 1; @@ -54,7 +54,7 @@ message ValidatorCurrentRewardsList { // each block as long as the validator's tokens remain constant. ValidatorCurrentRewards current_rewards = 2; } - +// TaskID is helper structure to store the validator outstanding rewards for the genesis state. message ValidatorOutstandingRewardsList { // val_addr is the address of validator string val_addr = 1; @@ -63,7 +63,7 @@ message ValidatorOutstandingRewardsList { // for a validator inexpensive to track, allows simple sanity checks. ValidatorOutstandingRewards outstanding_rewards = 2; } - +// StakerOutstandingRewardsList is helper structure to store the staker outstanding rewards for the genesis state. message StakerOutstandingRewardsList { // val_addr is the address of validator string val_addr = 1;