Skip to content

Commit

Permalink
Restore compatibility with rusk
Browse files Browse the repository at this point in the history
- Change `rusk-version` to `0.6.0`
- Fix test-harness to use piecrust crs

Resolves #1514
  • Loading branch information
herr-seppia committed Apr 3, 2023
1 parent 12e737e commit 45a4fc8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `Iteration` to block header [#1500]
- Add `TxRoot` to block header [#1499]

### Changed
- Change rusk-version compatibility to `0.6.0` [#1514]

### Removed
- Remove `step` from block header certificate [#1500]

Expand Down Expand Up @@ -98,6 +101,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- Issues -->

[#1514]: https://github.com/dusk-network/dusk-blockchain/issues/1514
[#1500]: https://github.com/dusk-network/dusk-blockchain/issues/1500
[#1499]: https://github.com/dusk-network/dusk-blockchain/issues/1499
[#1481]: https://github.com/dusk-network/dusk-blockchain/issues/1481
Expand Down
4 changes: 2 additions & 2 deletions harness/engine/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ func (n *Network) start(nodeDir string, name string, arg ...string) error {
if err != nil {
log.Panic(err)
}
targetCrs := filepath.Join(extProfilePath, ".rusk", "dev.crs")
newCrs := filepath.Join(nodeDir, ".rusk", "dev.crs")
targetCrs := filepath.Join(extProfilePath, ".rusk", "dev-piecrust.crs")
newCrs := filepath.Join(nodeDir, ".rusk", "dev-piecrust.crs")
os.Symlink(targetCrs, newCrs)

// LINK THE ORIGINAL keys
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const (
ConsensusSelectionMaxCommitteeSize = 1

// RuskVersion is the version of the supported rusk binary.
RuskVersion = "0.5.0"
RuskVersion = "0.6.0"

// GetCandidateReceivers is a redundancy factor on retrieving a missing candidate block.
GetCandidateReceivers = 7
Expand Down

0 comments on commit 45a4fc8

Please sign in to comment.