Use 180k gas for MsgDelegate

This commit is contained in:
Simon Warta 2020-07-27 10:12:24 +02:00
parent 939b2b9964
commit 42852c1cae
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ const msg: MsgDelegate = {
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "120000", // 120k
gas: "180000", // 180k
};
const memo = "Use your power wisely";

View File

@ -360,7 +360,7 @@ describe("SigningCosmWasmClient", () => {
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "120000", // 120k
gas: "180000", // 180k
};
const result = await client.signAndPost([msg], fee, "Use your power wisely");
assertIsPostTxSuccess(result);

View File

@ -95,7 +95,7 @@ describe("SigningCosmosClient", () => {
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "120000", // 120k
gas: "180000", // 180k
};
const result = await client.signAndPost([msg], fee, "Use your power wisely");
assertIsPostTxSuccess(result);