Skip to content

Commit

Permalink
fix: use newest quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Sep 27, 2023
1 parent c77fdf3 commit 7ac27a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# paths = ["/path/to/override"] # path dependency overrides

[alias] # command aliases
install_soroban = "install --git https://github.com/AhaLabs/soroban-tools --rev dc2a543993a293155516df52e79cc120cbd3dfe0 --root ./target soroban-cli --debug"
install_soroban = "install --git https://github.com/AhaLabs/soroban-tools --rev c7fb7e08ba8efa9828d9df863d991558f269e35b --root ./target soroban-cli --debug"
b = "build --target wasm32-unknown-unknown --release"
# c = "check"
# t = "test"
Expand Down
3 changes: 2 additions & 1 deletion quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ esac

# this is set to the quickstart `soroban-dev` image annointed as the release
# for a given Soroban Release, it is captured on Soroban Releases - https://soroban.stellar.org/docs/reference/releases
QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:testing@sha256:1c98f895f8b69cc843eeaa5230d67044dbeb390a5529d51dd7762d8ff685c3f8
QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:soroban-dev

shift

Expand Down Expand Up @@ -54,6 +54,7 @@ docker run -dti \

docker run --rm -ti \
--name stellar \
--pull always \
--network soroban-network \
-p 8000:8000 \
"$QUICKSTART_SOROBAN_DOCKER_SHA" \
Expand Down
2 changes: 1 addition & 1 deletion shared/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export const crowdfund = new Crowdfund.Contract({
...Crowdfund.networks[network as keyof typeof Crowdfund.networks],
})

export const server = new Server(rpcUrl)
export const server = new Server(rpcUrl, { allowHttp: rpcUrl.startsWith('http:') })

0 comments on commit 7ac27a3

Please sign in to comment.