Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions proto/src/proto/aggregator/v1/aggregator.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ message Version {
// timestamps are represented in unix time in seconds

/**
* Define all methods implementes by the gRPC
* Define all methods implements by the gRPC
* Channel: prover receives aggregator messages and returns prover messages with the same id
*/
service AggregatorService {
Expand Down Expand Up @@ -116,7 +116,7 @@ message GetProofRequest {
* @param {last_computed_end_time} - last proof timestamp when it was finished
* @param {current_computing_request_id} - id of the proof that is being computed
* @param {current_computing_start_time} - timestamp when the proof that is being computed started
* @param {version_proto} - .proto verion
* @param {version_proto} - .proto version
* @param {version_server} - server version
* @param {pending_request_queue_ids} - list of identifierss of proof requests that are in the pending queue
* @param {prover_name} - id of this prover server, normally specified via config.json, or UNSPECIFIED otherwise; it does not change if prover reboots
Expand Down
4 changes: 2 additions & 2 deletions proto/src/proto/executor/v1/executor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ message ProcessTransactionResponseV2 {
uint64 gas_left = 8;
// Total gas used as result of execution or gas estimation
uint64 gas_used = 9;
// Cumulative gas used by this tranaction in the block
// Cumulative gas used by this transaction in the block
uint64 cumulative_gas_used = 10;
// Total gas refunded as result of execution
uint64 gas_refunded = 11;
Expand Down Expand Up @@ -1119,4 +1119,4 @@ enum RomBlobError {
ROM_BLOB_ERROR_INVALID_FORCED_BATCHES = 7;
// ROM_BLOB_ERROR_INVALID_TOTALBODY_LEN totalBodyLen != blobDataLen - 1 (byte compression) - 4 (bytes totalBodyLen)
ROM_BLOB_ERROR_INVALID_TOTALBODY_LEN = 8;
}
}
2 changes: 1 addition & 1 deletion proto/src/proto/hashdb/v1/hashdb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ message Version {
// timestamps are represented in unix time in seconds

/**
* Define all methods implementes by the gRPC
* Define all methods implements by the gRPC
* Get: get the value for a specific key
* Set: set the value for a specific key
* SetProgram: set the byte data for a specific key
Expand Down