Skip to content
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 __fixtures__/output1/evmos/recovery/v1/genesis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe";
export const protobufPackage = "evmos.recovery.v1";
/** GenesisState defines the recovery module's genesis state. */
export interface GenesisState {
/** params defines all the paramaters of the module. */
/** params defines all the parameters of the module. */
params: Params;
}
/** GenesisState defines the recovery module's genesis state. */
Expand Down Expand Up @@ -145,4 +145,4 @@ export const Params = {
message.packetTimeoutDuration !== undefined && (obj.packet_timeout_duration = message.packetTimeoutDuration ? Duration.toSDK(message.packetTimeoutDuration) : undefined);
return obj;
}
};
};
2 changes: 1 addition & 1 deletion packages/ast/src/encoding/proto/proto.type.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('createCreateProtoType', () => {
});
});

describe('createCreateProtoType orginal logic', () => {
describe('createCreateProtoType original logic', () => {
const ref = store.findProto('tendermint/types/types.proto');

const options = deepmerge(defaultTelescopeOptions, {
Expand Down
Loading