From 000a865f68a039453e018fbf8a58b50260b723a2 Mon Sep 17 00:00:00 2001 From: Simon Warta <2603011+webmaster128@users.noreply.github.com> Date: Wed, 22 Nov 2023 09:44:10 +0100 Subject: [PATCH] Update packages/amino/src/stdtx.spec.ts --- packages/amino/src/stdtx.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/amino/src/stdtx.spec.ts b/packages/amino/src/stdtx.spec.ts index b1af946ff4..8b038272fe 100644 --- a/packages/amino/src/stdtx.spec.ts +++ b/packages/amino/src/stdtx.spec.ts @@ -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(); });