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

Feature/update to polkadot v0 9 1 #147

Merged
merged 52 commits into from
Nov 30, 2022
Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
70ef0af
subkey: display SS58 encoding of public key (#8674)
tomusdrw Apr 29, 2021
dab7d56
Add future transactions pool accessor to ValidatedPool (#8673)
tgmichel May 1, 2021
b15187c
Put BoundedVec in pallet prelude (#8710)
gavofyork May 2, 2021
c96e57d
Upgrade authorship pallet to Frame-v2 (#8663)
ferrell-code May 3, 2021
6fa36db
fixed typos (#8664)
gilescope May 3, 2021
8f0cfda
Refactor election solution trimming for efficiency (#8614)
coriolinus May 3, 2021
5740270
Remove Offence delay (#8414)
Lohann May 3, 2021
bd8c1ca
make custom on runtime upgrade prior to pallet ones (#8687)
gui1117 May 3, 2021
92c15dd
Multi-phase elections solution resubmission (#8290)
coriolinus May 3, 2021
d2f66e0
Add a JSON-RPC layer for reserved nodes (#8704)
kpp May 3, 2021
ec18031
Rework inherent data client side (#8526)
bkchr May 3, 2021
7b4d55b
Fix too generous error detection in behaviour.rs (#8717)
tomaka May 3, 2021
4993b70
Update Identity pallet to Frame V2 (#8697)
ferrell-code May 4, 2021
ab405b2
Add some builder functions for NonDefaultSetConfig (#8712)
tomaka May 4, 2021
cbd09f6
Improve `BoundedVec` API (#8707)
shawntabrizi May 4, 2021
5f73ba1
primitives: remove random_seed from BlockBuilder API (#8718)
andresilva May 4, 2021
b094eda
Change to use the same subcommand syntax as subkey (#8678)
nuke-web3 May 4, 2021
e708448
Set max log level when changing the log directives via RPC (#8721)
bkchr May 4, 2021
6bfdaba
implement BoundedEncodedLen (#8720)
coriolinus May 4, 2021
780fffb
add test for store trait (#8711)
gui1117 May 4, 2021
a604906
Update lib.rs (#8730)
drewstone May 4, 2021
a8ada8a
Let the clone wars begin! (#8731)
bkchr May 4, 2021
aba8760
RPC to trace execution of specified block (#7780)
mattrutherford May 5, 2021
0f849ef
Fix panic in election-provider offchain worker. (#8732)
kianenigma May 5, 2021
22a86fa
Migrate pallet-im-online to pallet attribute macro. (#8714)
shaunxw May 5, 2021
b1f4ef1
remove patract ss58version for it's useless now (#8738)
atenjin May 5, 2021
7fdd8e8
Migrate pallet-nicks to pallet attribute macro. (#8723)
shaunxw May 5, 2021
37effc7
Add a readme about feature metered for sp-utils (#8736)
kpp May 5, 2021
e5437ef
Added client function to delete a recent block (#8533)
arkpar May 5, 2021
bc43ad4
Make some alerts warnings instead of critical (#8739)
ddorgan May 6, 2021
9df2f10
derive Encode and Decode for BigUint (#8744)
apopiak May 6, 2021
06e10c6
BoundedVec MaxEncodedLen microoptimization (#8746)
coriolinus May 6, 2021
19f7327
equilibrium added ss58 prefix (#8342)
Veniamin May 6, 2021
f78e1ed
Add `BoundedBTreeMap` to `frame_support::storage` (#8745)
coriolinus May 6, 2021
4626536
Allow fallback names for protocols (#8682)
tomaka May 6, 2021
7595757
Fix the calculation of the time until the next slot (#8753)
bkchr May 6, 2021
a1eaece
`#[derive(MaxEncodedLen)]` (#8737)
coriolinus May 7, 2021
d8425ae
contracts: Refactor the exec module (#8604)
athei May 7, 2021
de24234
Relax `BoundedVec` trait restrictions (#8749)
coriolinus May 7, 2021
d47d162
fix spelling (#8760)
shawntabrizi May 8, 2021
aef7eb5
Remove unneeded trait bounds (#8765)
bkchr May 9, 2021
0aad5b8
Two bugfixes to authority-discovery (#8768)
tomaka May 9, 2021
92a7a12
Add `BoundedBTreeSet` (#8750)
coriolinus May 10, 2021
efd262f
Add arithmetic dispatch errors. (#8726)
shaunxw May 10, 2021
10b9da5
Increase the number of external IPs in cache (#8771)
tomaka May 10, 2021
3f11019
Update pallet macro migrations. (#8766)
shaunxw May 10, 2021
ebeaaa6
Merge remote-tracking branch 'upstream/polkadot-v0.9.1' into feature/…
MRamanenkau Sep 19, 2022
e2e92db
Make build compile
MRamanenkau Sep 19, 2022
f61ef1a
Make tests compile
MRamanenkau Sep 20, 2022
e9a746e
Add release notes and increase spec version
MRamanenkau Sep 20, 2022
70ce07c
Fix impl_version
MRamanenkau Sep 21, 2022
454e9bd
Disable flaky test
MRamanenkau Sep 22, 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
3 changes: 3 additions & 0 deletions client/offchain/src/api/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,9 @@ mod tests {
};
}

// Todo: Enable this test when polkadot-v0.9.3 is merged
// https://github.com/paritytech/substrate/tree/polkadot-v0.9.3
#[ignore]
#[test]
fn request_write_body_invalid_call() {
MRamanenkau marked this conversation as resolved.
Show resolved Hide resolved
let (mut api, addr) = build_api_server!();
Expand Down