Update packages/amino/src/stdtx.spec.ts

This commit is contained in:
Simon Warta
2023-11-22 09:44:10 +01:00
committed by GitHub
parent bd46b88926
commit 000a865f68
+1 -1
View File
@@ -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();
});