clients: double aptos faucet default airdrop amount

this should fix the insufficient fee error we're seeing in PRs like #1990
This commit is contained in:
aki 2022-11-30 04:52:18 +00:00
parent a408a5b8ff
commit 2d84fdf20a
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ exports.builder = function(y: typeof yargs) {
let NODE_URL = "http://0.0.0.0:8080/v1";
let FAUCET_URL = "http://0.0.0.0:8081";
let account = "0x277fa055b6a73c42c0662d5236c65c864ccbf2d4abd21f174a30c8b786eab84b";
let amount = 20000000;
let amount = 40000000;
if (argv.faucet != undefined) {
FAUCET_URL = argv.faucet as string;