Skip to content

Commit 8d29347

Browse files
authored
feat: scroll mode (#73)
* add NullProvider * add custom ExecutionWitness type * add scroll chains * re-export BundleAccount * add L2MessageQueue pre-deployed * move ext trait to sub mod * add DiskRoot rpc response type * update deps * add ScrollExecutorProvider * gate chunk mod * re-export DatabaseRef trait * update database impl * move withdraw_root out * update feature gate * update tool to dump scroll witness * fix non-touched storage root * use re-exported BundleAccount * update feature gate * update bin * update deps * update deps * add testdata * handle error * fix not sync * handle error * update and remove tokio * clippy * add tx_bytes_hash_in * export DatabaseError * fix doc * no block_hashes in scroll * fix * use tuple windows (sproll-evm/pull#93) * fix tests * fmt * toolchain * drop support of sled
1 parent 3e012ef commit 8d29347

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2651
-1019
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v4
3737
- uses: dtolnay/rust-toolchain@master
3838
with:
39-
toolchain: "nightly-2024-07-07"
39+
toolchain: "nightly-2024-12-06"
4040
components: rustfmt
4141
- name: Cargo fmt
4242
run: cargo fmt --all -- --check
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v4
5454
- uses: dtolnay/rust-toolchain@master
5555
with:
56-
toolchain: "nightly-2024-07-07"
56+
toolchain: "nightly-2024-12-06"
5757
components: clippy
5858
- name: cargo cache
5959
uses: Swatinem/rust-cache@v2
@@ -63,9 +63,9 @@ jobs:
6363
run: cargo clippy --workspace --features dev -- -D warnings
6464
- name: clippy metrics
6565
run: cargo clippy --workspace --features metrics -- -D warnings
66-
# - name: clippy all
67-
# run: cargo clippy --workspace --all-features -- -D warnings
66+
- name: clippy all
67+
run: cargo clippy --workspace --all-features -- -D warnings
6868
- name: clippy test
6969
run: cargo clippy --workspace --tests -- -D warnings
70-
# - name: clippy test all
71-
# run: cargo clippy --workspace --tests --all-features -- -D warnings # scroll feature is broken now
70+
- name: clippy test all
71+
run: cargo clippy --workspace --tests --all-features -- -D warnings

0 commit comments

Comments
 (0)