Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit ef22f1c

Browse files
committed
Merge remote-tracking branch 'origin/master' into dp/make-CallExecutors-generic-over-hasher-and-rlpcodec
* origin/master: (26 commits) Contract runtime polishing (#601) WIP on chain heap (#639) Events to track extrinsic success (#640) Install llvm-tools-preview component (#643) fix wasm executor compile error (#631) random fixes (#638) Empty becomes (), reflecting convention (#637) Allow to build_upon skipped entries, but don't walk back (#635) Separate out staking module into balances and payment (#629) Update .gitlab-ci.yml (#633) Do not attempt to rustup if in CI. This is taken care of by the base (#621) Avoid need for ident strings in storage (#624) rename to panic_handler as panic_implementation is deprecated in nightly (#626) 5 random fixes (#2) (#623) fix one typo in README (#627) Misspelled words (#625) Contracts: Per block gas limit (#506) Make sure to ban invalid transactions. (#615) (#620) Forward-port BFT fixes from v0.2 and restructure agreement cancelling (#619) Allow specifying listening multiaddresses (#577) ...
2 parents a55538c + ee2b68e commit ef22f1c

File tree

110 files changed

+4362
-2702
lines changed

Some content is hidden

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

110 files changed

+4362
-2702
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ variables:
1414

1515
cache:
1616
key: "${CI_JOB_NAME}"
17+
policy: pull
1718
paths:
1819
- ${CI_PROJECT_DIR}/target/
1920
- ${CI_PROJECT_DIR}/cargo/
@@ -57,7 +58,7 @@ test:rust:stable: &test
5758
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH"
5859
- ./scripts/build.sh
5960
- ./scripts/build-demos.sh
60-
- time cargo test --all
61+
- time cargo test --all --release
6162
tags:
6263
- rust-stable
6364

Cargo.lock

Lines changed: 41 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ members = [
1919
"substrate/runtime-sandbox",
2020
"substrate/runtime-std",
2121
"substrate/runtime-support",
22+
"substrate/runtime/balances",
2223
"substrate/runtime/consensus",
2324
"substrate/runtime/contract",
2425
"substrate/runtime/council",
@@ -52,10 +53,10 @@ exclude = [
5253
]
5354

5455
[badges]
55-
travis-ci = { repository = "paritytech/paritysubstrate", branch = "master" }
56+
travis-ci = { repository = "paritytech/substrate", branch = "master" }
5657
maintenance = { status = "actively-developed" }
57-
is-it-maintained-issue-resolution = { repository = "paritytech/paritysubstrate" }
58-
is-it-maintained-open-issues = { repository = "paritytech/paritysubstrate" }
58+
is-it-maintained-issue-resolution = { repository = "paritytech/substrate" }
59+
is-it-maintained-open-issues = { repository = "paritytech/substrate" }
5960

6061
[profile.release]
6162
# Substrate runtime requires unwinding.

0 commit comments

Comments
 (0)