Skip to content

Commit

Permalink
fix(vm): Get pubdata bytes from vm (#756)
Browse files Browse the repository at this point in the history
## What ❔

<!-- What are the changes this PR brings about? -->
<!-- Example: This PR adds a PR template to the repo. -->
<!-- (For bigger PRs adding more context is appreciated) -->

## Why ❔

<!-- Why are these changes done? What goal do they contribute to? What
are the principles behind them? -->
<!-- Example: PR templates ensure PR reviewers, observers, and future
iterators are in context about the evolution of repos. -->

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.
- [ ] Spellcheck has been run via `cargo spellcheck
--cfg=./spellcheck/era.cfg --code 1`.

---------

Signed-off-by: Danil <[email protected]>
  • Loading branch information
Deniallugo authored Dec 25, 2023
1 parent 6c5dbb8 commit 6c6f1ab
Show file tree
Hide file tree
Showing 19 changed files with 2,756 additions and 2,660 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,11 @@ jobs:
run: ci_run zk run loadtest

- name: Show server.log logs
if: always()
run: ci_run cat server.log || true

- name: Show sccache logs
if: always()
run: |
ci_run sccache --show-stats
ci_run cat /tmp/sccache_log.txt
Expand Down Expand Up @@ -202,18 +204,23 @@ jobs:
ci_run zk test i upgrade
- name: Show server.log logs
if: always()
run: ci_run cat server.log || true

- name: Show contract_verifier.log logs
if: always()
run: ci_run cat contract_verifier.log || true

- name: Show revert.log logs
if: always()
run: ci_run cat core/tests/revert-test/revert.log || true

- name: Show upgrade.log logs
if: always()
run: ci_run cat core/tests/upgrade-test/upgrade.log || true

- name: Show sccache logs
if: always()
run: |
ci_run sccache --show-stats
ci_run cat /tmp/sccache_log.txt
Expand Down Expand Up @@ -316,18 +323,23 @@ jobs:
CHECK_EN_URL="http://0.0.0.0:3060" ci_run zk test i upgrade
- name: Show server.log logs
if: always()
run: ci_run cat server.log || true

- name: Show contract_verifier.log logs
if: always()
run: ci_run cat ext-node.log || true

- name: Show revert.log logs
if: always()
run: ci_run cat core/tests/revert-test/revert.log || true

- name: Show upgrade.log logs
if: always()
run: ci_run cat core/tests/upgrade-test/upgrade.log || true

- name: Show sccache logs
if: always()
run: |
ci_run sccache --show-stats
ci_run cat /tmp/sccache_log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER table l1_batches DROP COLUMN pubdata_input;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE l1_batches ADD COLUMN pubdata_input BYTEA;
Loading

0 comments on commit 6c6f1ab

Please sign in to comment.