Skip to content

Commit

Permalink
Restore compact proof (#556)
Browse files Browse the repository at this point in the history
* Revert "Revert compact proof (#555)"

This reverts commit ab09b8e.

* bump client-side crate versions
  • Loading branch information
JoshOrndorff authored Jun 30, 2021
1 parent 3f6576b commit f5a35d3
Show file tree
Hide file tree
Showing 12 changed files with 90 additions and 90 deletions.
48 changes: 24 additions & 24 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Docker images are published for every tagged release. Learn more with `moonbeam

```bash
# Join the public testnet
docker run --network="host" purestake/moonbeam:v0.9.0 --chain alphanet
docker run --network="host" purestake/moonbeam:v0.9.1 --chain alphanet
```

You can find more detailed instructions to [run a full node in our TestNet](https://docs.moonbeam.network/node-operators/networks/full-node/)
Expand All @@ -27,7 +27,7 @@ service.

```bash
# Run a dev service node.
docker run --network="host" purestake/moonbeam:v0.9.0 --dev
docker run --network="host" purestake/moonbeam:v0.9.1 --dev
```

For more information, see our detailed instructions to [run a development node](https://docs.moonbeam.network/getting-started/local-node/setting-up-a-node/)
Expand All @@ -38,10 +38,10 @@ The command above will start the node in instant seal mode. It creates a block w

```bash
# Author a block every 6 seconds.
docker run --network="host" purestake/moonbeam:v0.9.0 --dev --sealing 6000
docker run --network="host" purestake/moonbeam:v0.9.1 --dev --sealing 6000

# Manually control the block authorship and finality
docker run --network="host" purestake/moonbeam:v0.9.0 --dev --sealing manual
docker run --network="host" purestake/moonbeam:v0.9.1 --dev --sealing manual
```

### Prefunded Development Addresses
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'moonbeam'
description = 'Moonbeam Collator'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.0'
version = '0.9.1'
authors = ["PureStake"]
edition = '2018'

Expand Down
4 changes: 2 additions & 2 deletions node/cli-opt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
[package]
name = 'moonbeam-cli-opt'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.0'
version = '0.9.1'
authors = ["PureStake"]
edition = '2018'

Expand Down
10 changes: 5 additions & 5 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moonbeam-cli"
version = "0.9.0"
version = "0.9.1"
authors = ["PureStake"]
edition = "2018"

Expand All @@ -18,10 +18,10 @@ sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polk
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.6" }
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.6" }

cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }

polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.6" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.6" }
Expand Down
24 changes: 12 additions & 12 deletions node/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'moonbeam-service'
homepage = 'https://moonbeam.network'
license = 'GPL-3.0-only'
version = '0.9.0'
version = '0.9.1'
authors = ["PureStake"]
edition = '2018'

Expand Down Expand Up @@ -94,20 +94,20 @@ fc-db = { git = "https://github.com/purestake/frontier", branch = "moonbeam-polk
fc-mapping-sync = { git = "https://github.com/purestake/frontier", branch = "moonbeam-polkadot-v0.9.6" }

# Cumulus dependencies
cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-collator = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-network = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-consensus-relay-chain = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
cumulus-client-cli = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-client-collator = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-client-network = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-primitives-core = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-client-service = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-client-consensus-relay-chain = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-test-relay-sproof-builder = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }

# Nimbus dependencies
nimbus-consensus = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
nimbus-consensus = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
pallet-author-inherent = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }
# TODO we should be able to depend only on the primitives crate once we move the inherent data provider there.
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof" }
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6" }

# Polkadot dependencies
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.6" }
Expand Down
2 changes: 1 addition & 1 deletion pallets/author-mapping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Maps AuthorIds to AccountIds Useful for associating consensus aut

[dependencies]
log = { version="0.4", default-features=false }
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof", default-features = false }
nimbus-primitives = { git="https://github.com/purestake/cumulus", branch="nimbus-polkadot-v0.9.6", default-features=false }
frame-support = { git="https://github.com/paritytech/substrate", branch="polkadot-v0.9.6", default-features=false }
frame-system = { git="https://github.com/paritytech/substrate", branch="polkadot-v0.9.6", default-features=false }
parity-scale-codec = { version="2.0.0", default-features=false, features=["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
description = "parachain staking pallet for collator selection and reward distribution"

[dependencies]
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-v0.9.6-without-compact-proof", default-features = false }
nimbus-primitives = { git = "https://github.com/purestake/cumulus", branch = "nimbus-polkadot-v0.9.6", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.6", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.6", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.6", default-features = false }
Expand Down
Loading

0 comments on commit f5a35d3

Please sign in to comment.