Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v1.7-dev' into feat/cpu-optimiza…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
lklimek committed Dec 13, 2024
2 parents 3943a2c + 19a4c6d commit 30bb9a3
Show file tree
Hide file tree
Showing 54 changed files with 642 additions and 812 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/manage-runs.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/prebuild-devcontainers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
name: Build and push devcontainer
runs-on: ubuntu-24.04
timeout-minutes: 60
timeout-minutes: 240
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests-build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
build-image:
name: Build ${{ inputs.name }} image
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests-build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ jobs:
build-js:
name: Build JS
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: softwareforgood/check-artifact-v4-existence@v0
id: check-artifact
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ jobs:
codeql:
name: Run Code QL
runs-on: ubuntu-24.04
timeout-minutes: 15
permissions:
actions: read
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-js-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
lint:
name: Linting
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
id-token: write
contents: read
Expand All @@ -40,6 +41,7 @@ jobs:
test:
name: Tests
runs-on: ubuntu-24.04
timeout-minutes: 15
permissions:
id-token: write
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests-rs-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ jobs:

detect_structure_changes:
name: Detect immutable structure changes
timeout-minutes: 10
runs-on: ubuntu-24.04
# FIXME: as we use `gh pr view` below, this check can only
# run on pull requests. We should find a way to run it
Expand Down
17 changes: 5 additions & 12 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed .yarn/cache/fsevents-patch-19706e7e35-10.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
28 changes: 9 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
"body-parser": "^1.20.3",
"path-to-regexp": "^1.9.0",
"cookie": "^0.7.0",
"cross-spawn": "^7.0.5"
"cross-spawn": "^7.0.5",
"nanoid": "^3.3.8"
},
"dependencies": {
"node-gyp": "^10.0.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/configs/defaults/getBaseConfigFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ export default function getBaseConfigFactory() {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:1.3',
image: 'dashpay/tenderdash:1',
},
p2p: {
host: '0.0.0.0',
Expand Down
7 changes: 7 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.7.0': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.platform.drive.tenderdash.docker.image = 'dashpay/tenderdash:1';
});
return configFile;
},
};
}

Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/templates/core/dash.conf.dot
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ devnet={{=it.core.devnet.name}}
powtargetspacing={{=it.core.devnet.powTargetSpacing}}
minimumdifficultyblocks={{=it.core.devnet.minimumDifficultyBlocks}}
highsubsidyblocks=500
highsubsidyfactor=10
highsubsidyfactor=100
llmqchainlocks={{=it.core.devnet.llmq.chainLocks}}
llmqinstantsenddip0024={{=it.core.devnet.llmq.instantSend}}
llmqplatform={{=it.core.devnet.llmq.platform}}
Expand Down
1 change: 1 addition & 0 deletions packages/rs-dapi-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ lru = { version = "0.12.3" }
serde = { version = "1.0.197", optional = true, features = ["derive"] }
serde_json = { version = "1.0.120", optional = true }
chrono = { version = "0.4.38", features = ["serde"] }

[dev-dependencies]
tokio = { version = "1.40", features = ["macros"] }
Loading

0 comments on commit 30bb9a3

Please sign in to comment.