File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ RUN apt-get update && apt-get install -y bash curl jq git make && rm -rf /var/li
1313RUN curl -L https://github.com/CosmWasm/wasmvm/releases/download/v1.5.4/libwasmvm.aarch64.so \
1414 -o /usr/lib/libwasmvm.aarch64.so && chmod 755 /usr/lib/libwasmvm.aarch64.so
1515
16+ RUN curl -L https://github.com/CosmWasm/wasmvm/releases/download/v1.5.4/libwasmvm.x86_64.so \
17+ -o /usr/lib/libwasmvm.x86_64.so && chmod 755 /usr/lib/libwasmvm.x86_64.so
18+
1619COPY --from=build /go/bin/pchaind /usr/local/bin/pchaind
1720COPY scripts /app/scripts
1821WORKDIR /app
Original file line number Diff line number Diff line change @@ -386,8 +386,8 @@ docker-reset:
386386# ------------------------
387387
388388ANVIL_URL =http://anvil:9545
389- PUSH_EVM_URL =http://push-chain-node :8545
390- CHAIN_RPC =http://push-chain-node :26657
389+ PUSH_EVM_URL =http://localhost :8545
390+ CHAIN_RPC =http://localhost :26657
391391CHAIN_ID =localchain_9000-1
392392
393393# Path where contracts will be cloned
@@ -403,7 +403,7 @@ e2e: docker-up wait-for-services fund-acc1 deploy-interop deploy-core e2e-solana
403403wait-for-services :
404404 @echo " Waiting for Anvil and Push-Chain-Node to start..."
405405 @for i in {1..30}; do \
406- if docker exec push-chain-node curl -s --fail http://push-chain-node :26657/status; then \
406+ if docker exec push-chain-node curl -s --fail http://localhost :26657/status; then \
407407 echo " Push-Chain Node is ready" ; \
408408 break ; \
409409 fi ; \
@@ -441,7 +441,7 @@ deploy-core:
441441 --private-key 0x0dfb3d814afd8d0bf7a6010e8dd2b6ac835cabe4da9e2c1e80c6a14df3994dd4 \
442442 --slow
443443
444- cd $(CONTRACTS_DIR)/push-chain-core-contracts && forge script scripts/deployMock.s.sol --broadcast --rpc-url http://push-chain-node :8545 --private-key 0x0dfb3d814afd8d0bf7a6010e8dd2b6ac835cabe4da9e2c1e80c6a14df3994dd4 --slow
444+ cd $(CONTRACTS_DIR)/push-chain-core-contracts && forge script scripts/deployMock.s.sol --broadcast --rpc-url http://localhost :8545 --private-key 0x0dfb3d814afd8d0bf7a6010e8dd2b6ac835cabe4da9e2c1e80c6a14df3994dd4 --slow
445445
446446e2e-solana-chain-config :
447447 echo " Adding Solana config to push-chain"
You can’t perform that action at this time.
0 commit comments