Skip to content
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.

Introduce parlia to akula #8

Merged
merged 49 commits into from
Sep 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
09f3b82
Fix CI (#222)
vorot93 Aug 4, 2022
5e90f7d
Database versioning / migrations (#221)
Aug 4, 2022
c5694cd
Merge EvmHost into Evm (#224)
vorot93 Aug 4, 2022
670d32b
Update README (#229)
vorot93 Aug 4, 2022
57aeaa6
Update deps (#230)
vorot93 Aug 5, 2022
349c35d
Update deps, crate description (#233)
vorot93 Aug 9, 2022
e25fae8
Remove unused Serialize derives (#228)
vorot93 Aug 10, 2022
3b1b922
Create JWT secret (#236)
vorot93 Aug 13, 2022
c9e285d
Fix chainspecs of post-Merge chains (#237)
vorot93 Aug 13, 2022
2baf643
Observe max block in execution (#239)
vorot93 Aug 16, 2022
f6ec29b
feat: Add Dockerfile (#238)
snoopy-mev Aug 16, 2022
5a1816a
Update Beacon chainspecs (#235)
vorot93 Aug 16, 2022
cfc6db8
Store sentry node key as plaintext (#241)
vorot93 Aug 16, 2022
3084c32
Refactor StageId (#242)
vorot93 Aug 16, 2022
430a8bb
feat: change Docker base image to Fedora (#245)
Genysys Aug 16, 2022
ec82aac
Fix Dockerfile
vorot93 Aug 17, 2022
2d75714
Fix Dockerfile
vorot93 Aug 17, 2022
c082a39
feat: Enable Websocket RPC server (#249)
snoopy-mev Aug 18, 2022
b9d0610
Fix db-walk to decode any table (#247)
clouds56 Aug 18, 2022
d4e2a27
Fix pinger (#251)
vorot93 Aug 20, 2022
4a6e9ac
Update deps (#252)
vorot93 Aug 20, 2022
c25c192
Update deps (#259)
vorot93 Aug 24, 2022
1917f4c
Fix header validation (#260)
gelfand Aug 27, 2022
58def81
Intermediate hashes: split account & storage changes (#226)
vorot93 Aug 30, 2022
b3ff2b0
Fix RPC (#268)
vorot93 Aug 30, 2022
730eede
Revert "Intermediate hashes: split account & storage changes (#226)" …
vorot93 Aug 30, 2022
34a01e9
--enable-api flag (#261)
0xKitsune Aug 30, 2022
1771c56
Update deps (#270)
vorot93 Sep 3, 2022
a6b9869
Fix --enable-api (#272)
vorot93 Sep 6, 2022
55bc72c
Update deps and rustc (#274)
vorot93 Sep 7, 2022
ff27ab4
Misc fixes (#278)
vorot93 Sep 7, 2022
96ebe5b
Update deps and fixes (#280)
vorot93 Sep 8, 2022
16fec56
Fix headers validation (#284)
vorot93 Sep 10, 2022
00ece2c
parity_listStorageKeys (#286)
vorot93 Sep 10, 2022
1f7008e
Sentry fixes (#275)
vorot93 Sep 11, 2022
0e50a98
Update deps (#288)
vorot93 Sep 11, 2022
6f2400f
Fix history query bug (#294)
vorot93 Sep 13, 2022
49aaa08
BodyDownload: exit early if no progress (#293)
gelfand Sep 13, 2022
5938dad
Use public-ip as fallback (#295)
shalzz Sep 14, 2022
196fc1d
gRPC state traversal (#292)
vorot93 Sep 14, 2022
5ce3847
Remove Ethash, switch mainnet chainspec to Beacon-based seal verifica…
vorot93 Sep 15, 2022
240fa0a
Update consensus tests (#298)
vorot93 Sep 15, 2022
1f16587
Update deps (#299)
vorot93 Sep 15, 2022
352f6b5
Interhashes optimization: Faster PrefixSet (#279)
jomuel Sep 16, 2022
e2a1086
genesis: generate the genesis block (#1)
setunapo Aug 11, 2022
1825420
add precompiled contract and upgrade system contract (#3)
kyrie-yl Aug 18, 2022
6f6a04d
feat: introduce parlia to akula.
galaio Aug 26, 2022
4c998de
opt check parlia logic;
galaio Sep 15, 2022
ce38b37
add gibbs hard fork;
galaio Sep 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[env]
RUSTC_BOOTSTRAP = "1"
14 changes: 9 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ name: CI

jobs:
ci:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- run: sudo apt-get install -y libext2fs-dev libprotoc-dev protobuf-compiler
- run: sudo apt-get install -y libext2fs-dev

- uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- uses: actions-rs/toolchain@v1
with:
Expand All @@ -23,7 +27,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
args: --all -- --check --config=imports_granularity=Crate

- uses: actions-rs/[email protected]
with:
Expand All @@ -50,12 +54,12 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ethereum/tests
submodules: recursive
path: ethereum-tests
ref: 'v10.4'
ref: 'v11.1'

- run: |
env RUST_LOG=error cargo run --release --bin consensus-tests -- --tests="./ethereum-tests"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/target
.idea
.DS_Store
Loading