Skip to content

Commit a0369b6

Browse files
chore(platform): enable bls-signatures by default and upgrade to rc-3 (#2568)
1 parent 8a91426 commit a0369b6

File tree

62 files changed

+144
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+144
-109
lines changed

Cargo.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/platform",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0-rc.3",
44
"private": true,
55
"scripts": {
66
"setup": "yarn install && yarn run build && yarn run configure",

packages/bench-suite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/bench-suite",
33
"private": true,
4-
"version": "2.0.0-rc.2",
4+
"version": "2.0.0-rc.3",
55
"description": "Dash Platform benchmark tool",
66
"scripts": {
77
"bench": "node ./bin/bench.js",

packages/check-features/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "check-features"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/dapi-grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dapi-grpc"
33
description = "GRPC client for Dash Platform"
4-
version = "2.0.0-rc.2"
4+
version = "2.0.0-rc.3"
55
authors = [
66
"Samuel Westrich <[email protected]>",
77
"Igor Markin <[email protected]>",

packages/dapi-grpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashevo/dapi-grpc",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0-rc.3",
44
"description": "DAPI GRPC definition file and generated clients",
55
"browser": "browser.js",
66
"main": "node.js",

packages/dapi-grpc/src/deserialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub mod from_to_string {
1919
String::deserialize(deserializer).and_then(|string| {
2020
string
2121
.parse::<T>()
22-
.map_err(|err| Error::custom(err.to_string()))
22+
.map_err(|err| Error::custom(format!("custom dapi-grpc error: {}", err)))
2323
})
2424
}
2525

packages/dapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dashevo/dapi",
33
"private": true,
4-
"version": "2.0.0-rc.2",
4+
"version": "2.0.0-rc.3",
55
"description": "A decentralized API for the Dash network",
66
"scripts": {
77
"api": "node scripts/api.js",

packages/dashmate/configs/getConfigFileMigrationsFactory.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,16 +1086,6 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
10861086
});
10871087
return configFile;
10881088
},
1089-
'2.0.0-rc.2': (configFile) => {
1090-
Object.entries(configFile.configs)
1091-
.forEach(([, options]) => {
1092-
delete options.core.miner.mediantime;
1093-
1094-
options.platform.drive.abci.docker.image = 'dashpay/drive:2-rc';
1095-
options.platform.dapi.api.docker.image = 'dashpay/dapi:2-rc';
1096-
});
1097-
return configFile;
1098-
},
10991089
};
11001090
}
11011091

packages/dashmate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dashmate",
3-
"version": "2.0.0-rc.2",
3+
"version": "2.0.0-rc.3",
44
"description": "Distribution package for Dash node installation",
55
"scripts": {
66
"lint": "eslint .",

0 commit comments

Comments
 (0)