Skip to content

Commit

Permalink
new eth tx manager (#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclemos authored Jan 19, 2023
1 parent cefd395 commit 40f340b
Show file tree
Hide file tree
Showing 83 changed files with 3,667 additions and 858 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- master
- develop
- update-external-dependencies
- 'release/**'
pull_request:
jobs:
lint:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- master
- develop
- update-external-dependencies
- 'release/**'
pull_request:
repository_dispatch:
types: [ok-to-test-command]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-full-non-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- master
- develop
- update-external-dependencies
- 'release/**'
pull_request:
repository_dispatch:
types: [ok-to-test-command]
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
.vscode
.idea/

out.dat
out.dat

cmd/__debug_bin
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN cd /src && make build
# CONTAINER FOR RUNNING BINARY
FROM alpine:3.16.0
COPY --from=build /src/dist/zkevm-node /app/zkevm-node
COPY --from=build /src/config/environments/local/local.node.config.toml /app/example.config.toml
COPY --from=build /src/config/environments/public/public.node.config.toml /app/example.config.toml
EXPOSE 8123
CMD ["/bin/sh", "-c", "/app/zkevm-node run"]
Loading

0 comments on commit 40f340b

Please sign in to comment.