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.
2 parents fee2f60 + a6689c3 commit f84f3aeCopy full SHA for f84f3ae
2 files changed
.github/workflows/on_testnet_reset.yml
@@ -35,7 +35,7 @@ jobs:
35
targets: wasm32v1-none
36
37
- name: Install Stellar CLI
38
- run: cargo install --locked stellar-cli --features opt
+ run: cargo install --locked stellar-cli
39
40
- name: Install stellar-sdk Python package
41
run: python3 -m pip install stellar-sdk
scripts/testnet_reset.sh
@@ -60,7 +60,7 @@ pk_bytes() {
60
fund_account() {
61
local public_key=$1
62
log_info "Funding: $public_key"
63
- if ! curl -fsS "https://friendbot.stellar.org/?addr=$public_key" >/dev/null 2>&1; then
+ if ! curl -s "https://friendbot.stellar.org/?addr=$public_key" >/dev/null 2>&1; then
64
log_warning "Friendbot funding failed for $public_key (may already be funded)"
65
fi
66
}
0 commit comments