Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize runtimes #235

Merged
merged 32 commits into from
May 8, 2020
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
03593ec
standardize super runtime TODO How to remove the session key stuff fr…
JoshOrndorff May 2, 2020
f8f7cd5
Preserve babe-grandpa node and runtime. This will be a reipe about gr…
JoshOrndorff May 2, 2020
b462e71
standardize basic-pow node and prune pow-runtime
JoshOrndorff May 2, 2020
035eedb
Standardize weight-fee-runtime.
JoshOrndorff May 2, 2020
8062554
Move sum-storage to super-runtime and prune api-runtime
JoshOrndorff May 4, 2020
10fa739
Convert kitchen node to instant seal
JoshOrndorff May 4, 2020
54d756d
Add comment with hint about light client problem
JoshOrndorff May 4, 2020
3613fc2
Merge branch 'master' into joshy-standardize-runtimes
JoshOrndorff May 4, 2020
8305406
Fix minor type aggregation issue
JoshOrndorff May 4, 2020
86bc846
Convert rpc-node to instant seal
JoshOrndorff May 4, 2020
8871130
Only kitchen node supports ocw-runtime
JoshOrndorff May 4, 2020
2d91bde
Properly prune session keys from runtime
JoshOrndorff May 4, 2020
00002f0
Standardize ocw-runtime
JoshOrndorff May 4, 2020
383b0f1
Restore api-runtime
JoshOrndorff May 4, 2020
3037691
Standardize API Runtime
JoshOrndorff May 4, 2020
099484c
rename sum-storage-runtime-api It isn't _necessarily_ related to the rpc
JoshOrndorff May 4, 2020
021037b
Update runtime API writeup to reflect refactorings.
JoshOrndorff May 4, 2020
36a3382
Update nodes/babe-grandpa-node/Cargo.toml
JoshOrndorff May 7, 2020
9083d0c
Update runtimes/super-runtime/src/lib.rs
JoshOrndorff May 7, 2020
cc01394
Update nodes/babe-grandpa-node/Cargo.toml
JoshOrndorff May 7, 2020
edcfee2
Add fixme annotation to light clients.
JoshOrndorff May 8, 2020
e174e67
Merge branch 'joshy-standardize-runtimes' of github.com:substrate-dev…
JoshOrndorff May 8, 2020
2c459ee
Clean kitchen node Cargo.toml
JoshOrndorff May 8, 2020
9d5f61a
Strip instant seal code from manual seal node
JoshOrndorff May 8, 2020
9e2ba3d
Update manual seal writeup
JoshOrndorff May 8, 2020
ebffaeb
Write up kitchen node
JoshOrndorff May 8, 2020
6bcfa86
Clarify language in api-runtime writeup
JoshOrndorff May 8, 2020
087f441
typo: because -> became
JoshOrndorff May 8, 2020
a8522cb
Replace TODO with comment in babe-grandpa node Cargo.toml
JoshOrndorff May 8, 2020
285d2ff
Remove some TODOs
JoshOrndorff May 8, 2020
f8228e9
Merge branch 'master' into joshy-standardize-runtimes
JoshOrndorff May 8, 2020
9942953
strip ocw stuff from babe-grandpa
JoshOrndorff May 8, 2020
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
205 changes: 82 additions & 123 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ members = [
"pallets/vec-set",
"pallets/weights",
"runtimes/api-runtime",
"runtimes/babe-grandpa-runtime",
"runtimes/ocw-runtime",
"runtimes/pow-runtime",
"runtimes/super-runtime",
"runtimes/weight-fee-runtime",
"nodes/babe-grandpa-node",
"nodes/basic-pow",
"nodes/kitchen-node",
"nodes/manual-seal",
Expand Down
Loading