Skip to content

Commit 4970243

Browse files
committed
patch fork deployment test
1 parent bf5862e commit 4970243

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-ibc/vibc-core-smart-contracts",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
44
"main": "dist/index.js",
55
"bin": {
66
"verify-vibc-core-smart-contracts": "./dist/scripts/verify-contract-script.js",

src/scripts/fork-deployment-test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ const startAnvilServer = async (
6363
port: string,
6464
outFileName: string
6565
) => {
66-
const p = $`anvil --port ${port} --fork-url ${rpcUrl}`.pipe(
66+
const p = $`anvil --port ${port} --fork-url ${rpcUrl}`
67+
68+
p.pipe(
6769
createWriteStream(outFileName)
6870
);
6971
await waitForAnvilServer(outFileName);

0 commit comments

Comments
 (0)