Skip to content

Commit

Permalink
Remove GAS limit and get it deployed again
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmorgan committed Nov 17, 2022
1 parent 3211ad8 commit 3fb3db2
Show file tree
Hide file tree
Showing 3 changed files with 1,265 additions and 1,222 deletions.
4 changes: 1 addition & 3 deletions api/functions/api/services/TrickleDownSplitterService.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ async function splitFunds(signer, network, weiToSplit) {
TrickleDownSplitterTruffleConfig.abi,
signer
);
return await contract.splitFunds(utils.bigNumberify(weiToSplit), {
gasLimit: 400000
});
return await contract.splitFunds(utils.bigNumberify(weiToSplit));
}

module.exports = {
Expand Down
Loading

0 comments on commit 3fb3db2

Please sign in to comment.