Use 180k gas for MsgDelegate

This commit is contained in:
Simon Warta
2020-07-28 11:48:21 +02:00
parent 939b2b9964
commit 42852c1cae
3 changed files with 3 additions and 3 deletions
+1 -1
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";
@@ -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);
@@ -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);