-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add liability pallet to main runtime (#258)
* Use liability market by default * Fix formatting
- Loading branch information
Showing
16 changed files
with
134 additions
and
63 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics-node" | ||
version = "1.7.3" | ||
version = "1.8.0" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node implementation in Rust & Substrate." | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics-rpc" | ||
version = "1.7.3" | ||
version = "1.8.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics-service" | ||
version = "1.7.3" | ||
version = "1.8.0" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node console line interface." | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pallet-robonomics-liability" | ||
description = "Robonomics Network Robot Liability Substrate runtime module" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,8 +17,10 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk | |
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.17", default-features = false } | ||
|
||
[dev-dependencies] | ||
base58 = "0.1.0" | ||
hex-literal = "0.2" | ||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.17" } | ||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.17" } | ||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.17" } | ||
|
||
[features] | ||
default = ["std"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.