diff --git a/app/utils/seda_keys.go b/app/utils/seda_keys.go index 9fe78c20..bcb6c2d0 100644 --- a/app/utils/seda_keys.go +++ b/app/utils/seda_keys.go @@ -20,7 +20,7 @@ import ( ) // SEDAKeyIndex enumerates the SEDA key indices. -type SEDAKeyIndex uint8 +type SEDAKeyIndex uint32 const ( SEDAKeyIndexSecp256k1 SEDAKeyIndex = iota diff --git a/proto/sedachain/batching/v1/batching.proto b/proto/sedachain/batching/v1/batching.proto index 6d468959..4241d035 100644 --- a/proto/sedachain/batching/v1/batching.proto +++ b/proto/sedachain/batching/v1/batching.proto @@ -34,7 +34,9 @@ message DataResultTreeEntries { repeated bytes entries = 1; } // ValidatorTreeEntry is an entry in the validator tree. message ValidatorTreeEntry { - bytes validator_address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress"]; + bytes validator_address = 1 + [ (gogoproto.casttype) = + "github.com/cosmos/cosmos-sdk/types.ValAddress" ]; uint32 voting_power_percent = 2; Secp256k1Entry secp256k1 = 3 [ (gogoproto.nullable) = false ]; } diff --git a/proto/sedachain/batching/v1/query.proto b/proto/sedachain/batching/v1/query.proto index 563ae916..cda472c0 100644 --- a/proto/sedachain/batching/v1/query.proto +++ b/proto/sedachain/batching/v1/query.proto @@ -36,7 +36,7 @@ service Query { } } -// BatchWithEntries is used by Batch Query to return a batch with its +// BatchWithEntries is used by Batch Query to return a batch with its // data result tree entries and validator tree entries. message BatchWithEntries { Batch batch = 1 [ (gogoproto.nullable) = false ]; @@ -66,7 +66,7 @@ message QueryBatchForHeightResponse { message QueryBatchesRequest { // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 1; - // with_unsigned indicates whether to return batches without + // with_unsigned indicates whether to return batches without // signatures or not. bool with_unsigned = 2; }