Skip to content

Commit

Permalink
Update packages/amino/src/stdtx.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 authored Nov 22, 2023
1 parent bd46b88 commit 000a865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amino/src/stdtx.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("isStdTx", () => {
});

it("should return false for an invalid StdTx with missing properties", () => {
const { msg, ...invalidTx } = validTx;
const { msg: _msg, ...invalidTx } = validTx;
expect(isStdTx(invalidTx)).toBeFalsy();
});

Expand Down

0 comments on commit 000a865

Please sign in to comment.