File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* Returns the given input. If the input is the default value
3
- * of protobuf, undefined is retunred . Use this when creating Amino JSON converters.
3
+ * of protobuf, undefined is returned . Use this when creating Amino JSON converters.
4
4
*/
5
5
export function omitDefault < T extends string | number | bigint | boolean > ( input : T ) : T | undefined {
6
6
switch ( typeof input ) {
Original file line number Diff line number Diff line change 4
4
5
5
This package provides a type-safe wrapper around
6
6
[ Tendermint RPC] ( https://docs.tendermint.com/master/rpc/ ) . Notably, all binary
7
- data is passed in and out as ` Uint8Array ` , and this module is reponsible for the
7
+ data is passed in and out as ` Uint8Array ` , and this module is responsible for the
8
8
hex/base64 encoding/decoding depending on the field and version of Tendermint.
9
9
Also handles converting numbers to and from strings.
10
10
Original file line number Diff line number Diff line change @@ -778,7 +778,7 @@ interface RpcBlock {
778
778
/** Raw tx bytes, base64 encoded */
779
779
readonly txs ?: readonly string [ ] ;
780
780
} ;
781
- // It's currently unclear why the deep nesting is requied .
781
+ // It's currently unclear why the deep nesting is required .
782
782
// See https://github.com/tendermint/tendermint/issues/7697.
783
783
readonly evidence ?: {
784
784
readonly evidence ?: readonly RpcEvidence [ ] ;
You can’t perform that action at this time.
0 commit comments