Skip to content

Commit

Permalink
fix: returned signDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
manu0466 committed Mar 14, 2024
1 parent 2e34092 commit b8a1188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/desmosclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ export class DesmosClient extends SigningCosmWasmClient {
return {
signerData: { accountNumber, sequence, chainId },
pubKey: pubkey,
signDoc,
signDoc: signed,
txRaw: TxRaw.fromPartial({
bodyBytes: signedTxBodyBytes,
authInfoBytes: signedAuthInfoBytes,
Expand Down Expand Up @@ -609,7 +609,7 @@ export class DesmosClient extends SigningCosmWasmClient {
return {
signerData: { accountNumber, sequence, chainId },
pubKey: pubkey,
signDoc,
signDoc: signed,
txRaw: TxRaw.fromPartial({
bodyBytes: signed.bodyBytes,
authInfoBytes: signed.authInfoBytes,
Expand Down

0 comments on commit b8a1188

Please sign in to comment.