blockchain/v1: remove in favor of v2 (#5728)

This commit is contained in:
Anton Kaliaev
2020-12-03 09:35:47 +04:00
committed by GitHub
parent bcb7044d64
commit 243ff4b43d
21 changed files with 18 additions and 4025 deletions
-1
View File
@@ -322,7 +322,6 @@ temp_dir = ""
# Fast Sync version to use:
# 1) "v0" (default) - the legacy fast sync implementation
# 2) "v1" - refactor of v0 version for better testability
# 2) "v2" - complete redesign of v0, optimized for testability & readability
version = "v0"
+2 -3
View File
@@ -28,7 +28,7 @@ has at least one peer and it's height is at least as high as the max
reported peer height. See [the IsCaughtUp
method](https://github.com/tendermint/tendermint/blob/b467515719e686e4678e6da4e102f32a491b85a0/blockchain/pool.go#L128).
Note: There are three versions of fast sync. We recommend using v0 as v1 and v2 are still in beta.
Note: There are three versions of fast sync. We recommend using v0 as v2 is still in beta.
If you would like to use a different version you can do so by changing the version in the `config.toml`:
```toml
@@ -39,8 +39,7 @@ Note: There are three versions of fast sync. We recommend using v0 as v1 and v2
# Fast Sync version to use:
# 1) "v0" (default) - the legacy fast sync implementation
# 2) "v1" - refactor of v0 version for better testability
# 2) "v2" - complete redesign of v0, optimized for testability & readability
# 2) "v2" - complete redesign of v0, optimized for testability & readability
version = "v0"
```