Skip to content

Commit 53c4ecf

Browse files
author
fletcher.fan
committed
Merge remote-tracking branch 'origin/release/0.4.x' into sync_release
2 parents 48eee2d + 9ee2c20 commit 53c4ecf

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

Dockerfile.l2-node

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Build Stage
2+
FROM ghcr.io/morph-l2/go-ubuntu-builder:go-1.22-ubuntu as builder
3+
4+
# Set working directory and copy necessary files
5+
COPY . /morph
6+
WORKDIR /morph/node
7+
8+
# Run build command
9+
RUN make build
10+
11+
# Final Stage
12+
FROM ghcr.io/morph-l2/go-ubuntu-builder:go-1.22-ubuntu
13+
14+
# Update and install dependencies, then clean up unnecessary files
15+
RUN apt-get -qq update \
16+
&& apt-get -qq install -y --no-install-recommends ca-certificates \
17+
&& rm -rf /var/lib/apt/lists/*
18+
19+
# Copy the built binaries from the builder image to the final image
20+
COPY --from=builder /morph/node/build/bin/tendermint /usr/local/bin/
21+
COPY --from=builder /morph/node/build/bin/morphnode /usr/local/bin/
22+
23+
# Set the default command
24+
CMD ["morphnode", "--home", "/data"]

contracts/tasks/mainnet_upgrade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ task("deploy-st-token")
110110
)
111111
await proxy.deployed()
112112
console.log(`proxy deployed at ${proxy.address}`)
113-
})
113+
})

ops/tools/multisend/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var (
2222
chainId *big.Int
2323
fundPrivKey = crypto.ToECDSAUnsafe(hexutil.MustDecode("0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"))
2424
urls = []string{"http://localhost:8945", "http://localhost:8545", "http://localhost:8645", "http://localhost:8745", "http://localhost:8845"}
25-
senderNum = 50
25+
senderNum = 10
2626
duration = 120 * time.Minute
2727
)
2828

@@ -67,7 +67,7 @@ func main() {
6767
}(sender, i)
6868
}
6969
count++
70-
time.Sleep(300 * time.Millisecond)
70+
time.Sleep(800 * time.Millisecond)
7171
fmt.Println()
7272
}
7373
}

0 commit comments

Comments
 (0)