Skip to content

Commit

Permalink
chore: fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
shifty11 committed Nov 27, 2023
1 parent 10a9733 commit 49ad001
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions common/sdk/src/utils/cosmostation-helper.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { StdSignDoc } from "@cosmjs/amino/build/signdoc";
import { makeSignDoc } from "@cosmjs/proto-signing";
import {
AccountData, DirectSignResponse,
OfflineDirectSigner
} from '@cosmjs/proto-signing/build/signer';
AccountData,
DirectSignResponse,
OfflineDirectSigner,
} from "@cosmjs/proto-signing/build/signer";
import {
AddChainParams,
RequestAccountResponse,
Expand Down Expand Up @@ -83,7 +84,10 @@ export class CosmostationSigner implements OfflineDirectSigner {
];
}

async signDirect(signerAddress: string, signDoc: SignDoc): Promise<DirectSignResponse> {
async signDirect(
signerAddress: string,
signDoc: SignDoc
): Promise<DirectSignResponse> {
const signedResult = await cosmostationMethods.signDirect(
this.config.chainId,
{
Expand Down

0 comments on commit 49ad001

Please sign in to comment.