Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Jun 5, 2024
1 parent cf36e33 commit 40e800c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/instances/stackup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ export const stackup = defineInstance((parameters?: StackupParameters) => {
port: args.port ?? 4337,
async start({ port = args.port }, options) {
const args_ = [
'--net',
'host',
'--add-host',
'host.docker.internal:host-gateway',
'--add-host',
Expand All @@ -119,7 +117,7 @@ export const stackup = defineInstance((parameters?: StackupParameters) => {
if (key === 'ethClientUrl')
value = (value as string).replaceAll(
/127\.0\.0\.1|0\.0\.0\.0/g,
'host.docker.internal',
'172.17.0.1',
)
if (key === 'privateKey') value = (value as string).replace('0x', '')

Expand Down

0 comments on commit 40e800c

Please sign in to comment.