Set gas multiplier to 1.5 for MsgGrantAllowance

This commit is contained in:
Simon Warta 2023-05-03 19:03:38 +02:00
parent ff8cf74b58
commit e955dd76c0

View File

@ -204,7 +204,8 @@ describe("SigningStargateClient", () => {
allowance: allowance,
}),
};
const grantResult = await client.signAndBroadcast(payer, [grantMsg], "auto", "Create allowance");
const fee = 1.5; // See https://github.com/cosmos/cosmos-sdk/issues/16020
const grantResult = await client.signAndBroadcast(payer, [grantMsg], fee, "Create allowance");
assertIsDeliverTxSuccess(grantResult);
}