Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Martin Pugh
polkadot
Commits
6eb9c71f
Commit
6eb9c71f
authored
Nov 29, 2019
by
Bastian Köcher
Committed by
Gavin Wood
Nov 29, 2019
Browse files
Update to Substrate master (#633)
parent
3773d5c1
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Cargo.lock
View file @
6eb9c71f
This diff is collapsed.
Click to expand it.
availability-store/Cargo.toml
View file @
6eb9c71f
...
...
@@ -11,6 +11,6 @@ parking_lot = "0.9.0"
log
=
"0.4.8"
codec
=
{
package
=
"parity-scale-codec"
,
version
=
"1.1.0"
,
default-features
=
false
,
features
=
["derive"]
}
substrate-primitives
=
{
git
=
"https://github.com/paritytech/substrate"
,
branch
=
"polkadot-master"
}
kvdb
=
{
git
=
"https://github.com/paritytech/parity-common"
,
rev
=
"03a2ba08f47f4af4219280e660a1ea92cb8896bd"
}
kvdb-rocksdb
=
{
git
=
"https://github.com/paritytech/parity-common"
,
rev
=
"03a2ba08f47f4af4219280e660a1ea92cb8896bd"
}
kvdb-memorydb
=
{
git
=
"https://github.com/paritytech/parity-common"
,
rev
=
"03a2ba08f47f4af4219280e660a1ea92cb8896bd"
}
kvdb
=
"0.1.1"
kvdb-rocksdb
=
"0.2"
kvdb-memorydb
=
"0.1.2"
service/src/lib.rs
View file @
6eb9c71f
...
...
@@ -272,6 +272,8 @@ pub fn new_full(config: Configuration<CustomConfiguration, GenesisConfig>)
let
client
=
service
.client
();
let
select_chain
=
service
.select_chain
()
.ok_or
(
ServiceError
::
SelectChainRequired
)
?
;
let
can_author_with
=
consensus_common
::
CanAuthorWithNativeVersion
::
new
(
client
.executor
()
.clone
());
let
babe_config
=
babe
::
BabeParams
{
keystore
:
service
.keystore
(),
...
...
@@ -283,6 +285,7 @@ pub fn new_full(config: Configuration<CustomConfiguration, GenesisConfig>)
inherent_data_providers
:
inherent_data_providers
.clone
(),
force_authoring
:
force_authoring
,
babe_link
,
can_author_with
,
};
let
babe
=
babe
::
start_babe
(
babe_config
)
?
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment