Skip to content

Commit

Permalink
Increase gas station gas limits
Browse files Browse the repository at this point in the history
  • Loading branch information
mightybyte committed Sep 14, 2021
1 parent 6586388 commit 4793fdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/transfer-create.html
Expand Up @@ -390,7 +390,7 @@
proof = await res.json();
}
}
const m = Pact.lang.mkMeta("free-x-chain-gas", targetChainId, 0.000000000001, 300, createTime(), 28800);
const m = Pact.lang.mkMeta("free-x-chain-gas", targetChainId, 0.000000000001, 400, createTime(), 28800);
const contCmd = {type: "cont", keyPairs:[],pactId: pactId, rollback: false, step: 1, meta: m, proof: proof, networkId: networkId}
const cmd = Pact.simple.cont.createCommand( contCmd.keyPairs, contCmd.nonce, contCmd.step, contCmd.pactId,
contCmd.rollback, contCmd.envData, contCmd.meta, contCmd.proof, contCmd.networkId);
Expand Down
2 changes: 1 addition & 1 deletion docs/xchain.html
Expand Up @@ -211,7 +211,7 @@
const networkId = document.getElementById("networkId").textContent
const host = `https://${server}/chainweb/0.0/${networkId}/chain/${targetChainId}/pact`;
const gasStation = "free-x-chain-gas";
const m = Pact.lang.mkMeta(gasStation, targetChainId, 0.000000000001, 300, createTime(), 28800);
const m = Pact.lang.mkMeta(gasStation, targetChainId, 0.000000000001, 400, createTime(), 28800);
const contCmd = {type: "cont", keyPairs:[],pactId: pactId, rollback: false, step: 1, meta: m, proof: proof, networkId: networkId}
try {
const result = await sendNonJson(contCmd, host);
Expand Down

0 comments on commit 4793fdb

Please sign in to comment.