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

client: add WebRTC transport #1

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
df81976
Dont ignore errors in pallet benchmarking (#12449)
ggwpez Oct 10, 2022
9672c36
Update UI tests for Rust 1.64 (#12440)
rcny Oct 10, 2022
488fc24
rpc: Implement `transaction` RPC API (#12328)
lexnv Oct 11, 2022
60be7b8
Remove the unused light client requests (#12470)
tomaka Oct 11, 2022
6072b90
Fix flaky service test (#12472)
altonen Oct 11, 2022
1bf2e6d
Rename `from_components` to `from_parts` (#12473)
KiChjang Oct 11, 2022
ccc8f6c
Avoid Unstable Sort (#12455)
shawntabrizi Oct 11, 2022
94b731c
Finalized block event triggers tx maintanance (#12305)
michalkucharczyk Oct 11, 2022
88db102
tx-pool: failing tests fixed (#12481)
michalkucharczyk Oct 12, 2022
06a9f0a
Clarify the "direction" field of block requests (#12438)
tomaka Oct 12, 2022
f8a0b7a
BlockId::Number refactor: trivial changes to BlockId::Hash (#12471)
michalkucharczyk Oct 12, 2022
b324e51
Dont use benchmark range on constant functions (#12456)
shawntabrizi Oct 12, 2022
94941a8
Punish peers for duplicate GRANDPA neighbor messages (#12462)
dmitry-markin Oct 13, 2022
983b6b0
Introduce mockable `ChainSync` object for testing (#12480)
altonen Oct 13, 2022
1f39c90
pallet-mmr: RPC API and Runtime API work with block numbers (#12345)
Szegoo Oct 13, 2022
fd00b14
Enable the `wasmtime`-based WASM executor by default (#12486)
koute Oct 13, 2022
6e04e48
Trivial BlockId::Number => Hash (#12490)
michalkucharczyk Oct 13, 2022
f313987
BlockId removal: refactor: Backend::state_at (#12488)
michalkucharczyk Oct 14, 2022
0ee0327
Try-runtime CLI fix weight parsing (#12491)
ggwpez Oct 14, 2022
6f453b5
Export fn code_hash (#12479)
kvinwang Oct 17, 2022
30a7a5b
Introduce `ChainSyncInterface` (#12489)
altonen Oct 17, 2022
951f075
sp-api: Remove invalid unsafe trait bounds (#12502)
bkchr Oct 17, 2022
273e264
pallet-mmr: fix offchain db for sync from zero (#12498)
acatangiu Oct 17, 2022
acacb53
Fix: typo (#12505)
omahs Oct 17, 2022
444cf9d
Upgrade libp2p to 0.49.0 (#12256)
dmitry-markin Oct 17, 2022
fb707c8
client: add WebRTC transport
melekes Jun 30, 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
5 changes: 3 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ rustflags = [
"-Aclippy::borrowed-box", # Reasonable to fix this one
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
"-Aclippy::unnecessary_cast", # Types may change
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::useless_conversion", # Types may change
"-Aclippy::unit_arg", # styalistic.
"-Aclippy::option-map-unit-fn", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
"-Aclippy::eq_op", # In tests we test equality.
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::stable_sort_primitive", # prefer stable sort
]
Loading