Post Hardfork 3 Cleanup (#490)

* Change versioning on master to 4.1.x development

* Remove SlateV3, V3 References from command-line code

* continue to remove pre HF3 functionality, remove participant_id from slate, remove is_compact, derive slate state based on slate state field

* slate no longer needs explicit compact step

* version/build coinbase doctest cleanup

* don't attempt to store transaction during tx lock if it doesn't exist

* repair incorrectly removed logic

* last test fixes (hopefully)
This commit is contained in:
Yeastplume
2020-07-31 10:33:45 +01:00
committed by GitHub
parent 2888882e30
commit 6c9cef1370
24 changed files with 113 additions and 1201 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet"
version = "4.0.1-alpha.1"
version = "4.1.0-alpha.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
@@ -31,13 +31,13 @@ semver = "0.10"
rustyline = "6"
lazy_static = "1"
grin_wallet_api = { path = "./api", version = "4.0.1-alpha.1" }
grin_wallet_impls = { path = "./impls", version = "4.0.1-alpha.1" }
grin_wallet_libwallet = { path = "./libwallet", version = "4.0.1-alpha.1" }
grin_wallet_controller = { path = "./controller", version = "4.0.1-alpha.1" }
grin_wallet_config = { path = "./config", version = "4.0.1-alpha.1" }
grin_wallet_api = { path = "./api", version = "4.1.0-alpha.1" }
grin_wallet_impls = { path = "./impls", version = "4.1.0-alpha.1" }
grin_wallet_libwallet = { path = "./libwallet", version = "4.1.0-alpha.1" }
grin_wallet_controller = { path = "./controller", version = "4.1.0-alpha.1" }
grin_wallet_config = { path = "./config", version = "4.1.0-alpha.1" }
grin_wallet_util = { path = "./util", version = "4.0.1-alpha.1" }
grin_wallet_util = { path = "./util", version = "4.1.0-alpha.1" }
[build-dependencies]
built = { version = "0.4", features = ["git2"]}