Skip to content

Commit 9340447

Browse files
fixed lib issue
1 parent 2fb3573 commit 9340447

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Dockerfile.e2e

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ RUN apt-get update && apt-get install -y bash curl jq git make && rm -rf /var/li
1313
RUN 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+
1619
COPY --from=build /go/bin/pchaind /usr/local/bin/pchaind
1720
COPY scripts /app/scripts
1821
WORKDIR /app

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,8 @@ docker-reset:
386386
# ------------------------
387387

388388
ANVIL_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
391391
CHAIN_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
403403
wait-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

446446
e2e-solana-chain-config:
447447
echo "Adding Solana config to push-chain"

0 commit comments

Comments
 (0)