We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ba7de commit d09646eCopy full SHA for d09646e
Makefile
@@ -29,13 +29,16 @@ deploy-anvil:
29
deploy-btp:
30
@eval $$(curl -H "x-auth-token: $${BPT_SERVICE_TOKEN}" -s $${BTP_CLUSTER_MANAGER_URL}/ide/foundry/$${BTP_SCS_ID}/env | sed 's/^/export /'); \
31
args=""; \
32
- @if [ -z "${BTP_FROM}" ]; then \
+ @if [ ! -z "$${BTP_FROM}" ]; then \
33
args="--unlocked --from $${BTP_FROM}"; \
34
else \
35
echo "\033[1;33mWARNING: No keys are activated on the node, falling back to interactive mode...\033[0m"; \
36
echo ""; \
37
args="--interactive"; \
38
fi; \
39
+ if [ ! -z "$${BTP_GAS_PRICE}" ]; then \
40
+ args="$$args --gas-price $${BTP_GAS_PRICE}"; \
41
+ fi; \
42
if [ "$${BTP_EIP_1559_ENABLED}" = "false" ]; then \
43
args="$$args --legacy"; \
44
0 commit comments