Skip to content

Commit

Permalink
Merge branch 'release/0.5.3'
Browse files Browse the repository at this point in the history
hging committed Mar 17, 2021
2 parents d0b286b + aa8ac6c commit deb435d
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "vendor/frontier"]
path = vendor/frontier
url = git@github.com:mathwallet/frontier.git
url=https://github.com/mathwallet/frontier.git
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ http://scan.boka.network/#/Galois

2、Clone MathChain from Github:

``` git clone https://github.com:mathwallet/MathChain ```
``` git clone https://github.com/mathwallet/MathChain.git ```

3、Enter the directory:

2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ homepage = 'https://mathwallet.net/mathchain'
license = 'Unlicense'
name = 'mathchain'
repository = 'https://github.com/mathwallet/MathChain/'
version = '0.5.2'
version = '0.5.3'

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
4 changes: 3 additions & 1 deletion node/src/service.rs
Original file line number Diff line number Diff line change
@@ -206,7 +206,7 @@ pub fn new_partial(config: &Configuration, sealing: Option<Sealing>) -> Result<

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

config.network.extra_sets.push(sc_finality_grandpa::grandpa_peers_set_config());

let (network, network_status_sinks, system_rpc_tx, network_starter) =
sc_service::build_network(sc_service::BuildNetworkParams {
config: &config,
1 change: 1 addition & 0 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
@@ -252,6 +252,7 @@ impl pallet_grandpa::Config for Runtime {
)>>::IdentificationTuple;

type HandleEquivocation = ();

type WeightInfo = ();
}

0 comments on commit deb435d

Please sign in to comment.