Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
265add0
Rebuild runtime
gavofyork Dec 22, 2018
e589358
Remove invalid value from chainspec (#68)
gavofyork Jan 9, 2019
2024df8
service: use grandpa block import for locally sealed aura blocks (#85)
andresilva Jan 16, 2019
6112021
bump version to v0.3.1
andresilva Jan 17, 2019
29020a4
Merge branch 'v0.3' of github.com:paritytech/polkadot into v0.3
gavofyork Jan 18, 2019
fada3aa
Merge branch 'master' into v0.3
gavofyork Jan 18, 2019
dde0b5e
Update lock file.
gavofyork Jan 18, 2019
a35186d
limit number of transactions when building blocks (#91)
rphmeier Jan 18, 2019
4c7fe32
Update to latest Substrate
gavofyork Jan 18, 2019
8e0b074
Bump to 0.3.2
gavofyork Jan 18, 2019
b328153
Actually bump.
gavofyork Jan 18, 2019
b28ff9e
v0.3.2 (#98)
rphmeier Jan 21, 2019
a6f647a
point to alexander-backports of substrate
rphmeier Jan 23, 2019
3a88e24
bump version
rphmeier Jan 23, 2019
e837443
cli: fix node shutdown (#100)
andresilva Jan 22, 2019
b80733a
update to latest substrate, change to v0.3.4
rphmeier Jan 23, 2019
afbfee4
update to latest substrate, bump version to 0.3.5
andresilva Jan 25, 2019
d77698b
v0.3.6
rphmeier Jan 25, 2019
628ad2f
try to build on every v0.3 commit and update alexander-backports
rphmeier Jan 27, 2019
ab5d7ba
bump to v0.3.7
rphmeier Jan 31, 2019
c082b6b
bump to 0.3.8
rphmeier Jan 31, 2019
a9d2048
Bump to 0.3.9: network and pruning improvements
rphmeier Feb 1, 2019
cfa0d43
Bump to 0.3.10: reduce network bandwidth usage
andresilva Feb 6, 2019
0f12e0c
Use libp2p-kad 0.3.2 (#122)
tomaka Feb 6, 2019
ef8343e
Bump libp2p-identify to 0.3.1 (#123)
tomaka Feb 7, 2019
fe96cda
Bump to 0.3.12 (#127)
tomaka Feb 7, 2019
dae7c67
Update Substrate again (#128)
tomaka Feb 7, 2019
f94368b
update substrate and bump version to v0.3.13
andresilva Feb 11, 2019
2a5e8fc
bump version to v0.3.14: fix --reserved-nodes
andresilva Feb 11, 2019
05a7b52
add a manually curated grandpa module (#136)
rphmeier Feb 13, 2019
461ea31
updating v0.3 to use substrate v0.10 (#146)
gterzian Feb 25, 2019
c03d1cd
config: fix wrong ip for alexander bootnode (#161)
andresilva Feb 26, 2019
2dd861f
fix curated-grandpa and rebuild wasm (#162)
rphmeier Feb 26, 2019
8b07458
[v0.3] Integrates new gossip system into Polkadot (#166)
rphmeier Mar 4, 2019
3f23eb8
network: guard validation network future under exit signal (#168)
andresilva Mar 4, 2019
6d48897
bump version to v0.3.15: substrate v0.10
andresilva Mar 4, 2019
849b04b
[v0.3] update to substrate master (#175)
rphmeier Mar 13, 2019
fcf98ae
service: fix telemetry endpoints on alexander chainspec (#169) (#178)
andresilva Mar 19, 2019
b64e3cc
Update v0.3 to latest Substrate master (#177)
rphmeier Mar 20, 2019
a01bb1a
replace sr25519 accountid with anysigner
rphmeier Mar 20, 2019
e1b97b2
bump version to v0.3.17
andresilva Mar 20, 2019
4501a48
Some PoC-3 GRANDPA tweaks (#181)
rphmeier Mar 22, 2019
001f9aa
use authorities when calculating duty roster (#185)
rphmeier Mar 22, 2019
7296ba6
[v0.3] Update to substrate master (#183)
andresilva Mar 22, 2019
37bf8b4
update to substrate master: bump version to v0.3.19 (#188)
andresilva Mar 25, 2019
06fe5cc
polkadot v0.3.20 (#190)
andresilva Mar 26, 2019
d854250
bump spec version (#191)
andresilva Mar 26, 2019
71d9c0c
Merge remote-tracking branch 'origin/v0.3' into update-substrate
bkchr Mar 27, 2019
82e156a
Fix compilation
bkchr Mar 27, 2019
e3e599a
Update version to 0.4.0
bkchr Mar 28, 2019
7ed879e
Switch to use `polkadot-master` branch from substrate
bkchr Mar 28, 2019
2e6ea76
Remove unused struct
bkchr Mar 28, 2019
14751a7
Remove `grandpa::SyncedAuthorities` from `OnSessionChange`
bkchr Mar 28, 2019
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
Prev Previous commit
Next Next commit
service: use grandpa block import for locally sealed aura blocks (#85)
  • Loading branch information
andresilva committed Jan 17, 2019
commit 2024df8707b75bc38ec2e2b2d88e9de78aef8e7c
2 changes: 1 addition & 1 deletion service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ construct_service_factory! {
SlotDuration::get_or_compute(&*client)?,
key,
client.clone(),
client,
block_import,
Arc::new(proposer_factory),
service.network(),
);
Expand Down