@@ -13,7 +13,7 @@ message Block {
13
13
uint64 size = 4 ;
14
14
BlockHeader header = 5 ;
15
15
16
- // Uncles represents block produced with a valid solution but were not actually choosen
16
+ // Uncles represents block produced with a valid solution but were not actually chosen
17
17
// as the canonical block for the given height so they are mostly "forked" blocks.
18
18
//
19
19
// If the Block has been produced using the Proof of Stake consensus algorithm, this
@@ -285,7 +285,7 @@ message Log {
285
285
bytes data = 3 ;
286
286
287
287
// Index is the index of the log relative to the transaction. This index
288
- // is always populated regardless of the state revertion of the the call
288
+ // is always populated regardless of the state reversion of the call
289
289
// that emitted this log.
290
290
uint32 index = 4 ;
291
291
@@ -294,7 +294,7 @@ message Log {
294
294
// An **important** notice is that this field will be 0 when the call
295
295
// that emitted the log has been reverted by the chain.
296
296
//
297
- // Currently, there is two locations where a Log can be obtained:
297
+ // Currently, there are two locations where a Log can be obtained:
298
298
// - block.transaction_traces[].receipt.logs[]
299
299
// - block.transaction_traces[].calls[].logs[]
300
300
//
@@ -341,7 +341,7 @@ message Call {
341
341
reserved 29 ;
342
342
343
343
// In Ethereum, a call can be either:
344
- // - Successfull , execution passes without any problem encountered
344
+ // - Successful , execution passes without any problem encountered
345
345
// - Failed, execution failed, and remaining gas should be consumed
346
346
// - Reverted, execution failed, but only gas consumed so far is billed, remaining gas is refunded
347
347
//
@@ -355,7 +355,7 @@ message Call {
355
355
// see above for details about those flags.
356
356
string failure_reason = 11 ;
357
357
358
- // This field represents wheter or not the state changes performed
358
+ // This field represents whether or not the state changes performed
359
359
// by this call were correctly recorded by the blockchain.
360
360
//
361
361
// On Ethereum, a transaction can record state changes even if some
@@ -412,7 +412,7 @@ message BalanceChange {
412
412
BigInt new_value = 3 ;
413
413
Reason reason = 4 ;
414
414
415
- // Obtain all balanche change reasons under deep mind repository:
415
+ // Obtain all balance change reasons under deep mind repository:
416
416
//
417
417
// ```shell
418
418
// ack -ho 'BalanceChangeReason\(".*"\)' | grep -Eo '".*"' | sort | uniq
@@ -466,7 +466,7 @@ message CodeChange {
466
466
// The gas is computed per actual op codes. Doing them completely might prove
467
467
// overwhelming in most cases.
468
468
//
469
- // Hence, we only index some of them, those that are costy like all the calls
469
+ // Hence, we only index some of them, those that are costly like all the calls
470
470
// one, log events, return data, etc.
471
471
message GasChange {
472
472
uint64 old_value = 1 ;
@@ -505,4 +505,4 @@ message GasChange {
505
505
}
506
506
507
507
uint64 ordinal = 4 ;
508
- }
508
+ }
0 commit comments