no need for msg url type

This commit is contained in:
Mantas Vidutis 2022-11-24 11:22:53 -08:00
parent 36fc113849
commit ecd8b97223
No known key found for this signature in database
GPG Key ID: 60BDC8CD8FA60E29

View File

@ -104,7 +104,7 @@ describe("AuthzExtension", () => {
it("works querying by granter", async () => {
pendingWithoutSimapp44Or46();
const [client, tmClient] = await makeClientWithAuthz(simapp.tendermintUrl);
const response = await client.authz.granterGrants(granter1Address, "");
const response = await client.authz.granterGrants(granter1Address);
expect(response.grants.length).toEqual(1);
const grant = response.grants[0];
@ -126,7 +126,7 @@ describe("AuthzExtension", () => {
it("works querying by grantee", async () => {
pendingWithoutSimapp44Or46();
const [client, tmClient] = await makeClientWithAuthz(simapp.tendermintUrl);
const response = await client.authz.granteeGrants(grantee1Address, "");
const response = await client.authz.granteeGrants(grantee1Address);
expect(response.grants.length).toEqual(1);
const grant = response.grants[0];