Skip to content

Commit deb435d

Browse files
committed
Merge branch 'release/0.5.3'
2 parents d0b286b + aa8ac6c commit deb435d

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "vendor/frontier"]
22
path = vendor/frontier
3-
url = git@github.com:mathwallet/frontier.git
3+
url=https://github.com/mathwallet/frontier.git

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ http://scan.boka.network/#/Galois
4242

4343
2、Clone MathChain from Github:
4444

45-
``` git clone https://github.com:mathwallet/MathChain ```
45+
``` git clone https://github.com/mathwallet/MathChain.git ```
4646

4747
3、Enter the directory:
4848

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = 'https://mathwallet.net/mathchain'
77
license = 'Unlicense'
88
name = 'mathchain'
99
repository = 'https://github.com/mathwallet/MathChain/'
10-
version = '0.5.2'
10+
version = '0.5.3'
1111

1212
[package.metadata.docs.rs]
1313
targets = ['x86_64-unknown-linux-gnu']

node/src/service.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ pub fn new_partial(config: &Configuration, sealing: Option<Sealing>) -> Result<
206206

207207
/// Builds a new service for a full client.
208208
pub fn new_full(
209-
config: Configuration,
209+
mut config: Configuration,
210210
sealing: Option<Sealing>,
211211
enable_dev_signer: bool,
212212
) -> Result<TaskManager, ServiceError> {
@@ -216,6 +216,8 @@ pub fn new_full(
216216
other: (consensus_result, pending_transactions, filter_pool, frontier_backend),
217217
} = new_partial(&config, sealing)?;
218218

219+
config.network.extra_sets.push(sc_finality_grandpa::grandpa_peers_set_config());
220+
219221
let (network, network_status_sinks, system_rpc_tx, network_starter) =
220222
sc_service::build_network(sc_service::BuildNetworkParams {
221223
config: &config,

runtime/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ impl pallet_grandpa::Config for Runtime {
252252
)>>::IdentificationTuple;
253253

254254
type HandleEquivocation = ();
255+
255256
type WeightInfo = ();
256257
}
257258

0 commit comments

Comments
 (0)