From 2d84fdf20a4c9291617c8278c05d4e072880731b Mon Sep 17 00:00:00 2001 From: aki Date: Wed, 30 Nov 2022 04:52:18 +0000 Subject: [PATCH] clients: double aptos faucet default airdrop amount this should fix the insufficient fee error we're seeing in PRs like #1990 --- clients/js/cmds/aptos.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/js/cmds/aptos.ts b/clients/js/cmds/aptos.ts index 86e6fce6a..271eadbf9 100644 --- a/clients/js/cmds/aptos.ts +++ b/clients/js/cmds/aptos.ts @@ -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;