Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
cargo clippy --manifest-path=pool-apps/Cargo.toml -- -D warnings
cargo clippy --manifest-path=pool-apps/jd-server/Cargo.toml -- -D warnings
cargo clippy --manifest-path=miner-apps/Cargo.toml -- -D warnings
cargo clippy --manifest-path=miner-apps/mining-device/Cargo.toml -- -D warnings
cargo clippy --manifest-path=integration-tests/Cargo.toml -- -D warnings
cargo clippy --manifest-path=bitcoin-core-sv2/Cargo.toml -- -D warnings

Expand All @@ -58,7 +57,6 @@ jobs:
cargo fmt --all --manifest-path=pool-apps/Cargo.toml -- --check
cargo fmt --all --manifest-path=pool-apps/jd-server/Cargo.toml -- --check
cargo fmt --all --manifest-path=miner-apps/Cargo.toml -- --check
cargo fmt --all --manifest-path=miner-apps/mining-device/Cargo.toml -- --check
cargo fmt --all --manifest-path=integration-tests/Cargo.toml -- --check
cargo fmt --all --manifest-path=bitcoin-core-sv2/Cargo.toml -- --check

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/lockfiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
cargo build --manifest-path=pool-apps/Cargo.toml --locked
cargo build --manifest-path=pool-apps/jd-server/Cargo.toml --locked
cargo build --manifest-path=miner-apps/Cargo.toml --locked
cargo build --manifest-path=miner-apps/mining-device/Cargo.toml --locked
cargo build --manifest-path=integration-tests/Cargo.toml --locked

# while bitcoin-core-sv2 crate is still a lib crate, no need to lock it so we skip it here
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/msrv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ jobs:
- name: Build miner applications workspace
run: cargo build --manifest-path=miner-apps/Cargo.toml --all-features

- name: Build mining-device (separate workspace)
run: cargo build --manifest-path=miner-apps/mining-device/Cargo.toml

- name: Build integration tests workspace
run: cargo build --manifest-path=integration-tests/Cargo.toml

Expand All @@ -54,9 +51,6 @@ jobs:
- name: Check test compilation for miner applications workspace
run: cargo test --manifest-path=miner-apps/Cargo.toml --no-run

- name: Check test compilation for mining-device
run: cargo test --manifest-path=miner-apps/mining-device/Cargo.toml --no-run

- name: Check test compilation for integration tests workspace
run: cargo test --manifest-path=integration-tests/Cargo.toml --no-run

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,5 @@ jobs:
run: cargo test --manifest-path=pool-apps/jd-server/Cargo.toml
- name: Test miner applications workspace
run: cargo test --manifest-path=miner-apps/Cargo.toml
- name: Test mining-device (separate workspace)
run: cargo test --manifest-path=miner-apps/mining-device/Cargo.toml
- name: Test bitcoin-core-sv2 crate
run: cargo test --manifest-path=bitcoin-core-sv2/Cargo.toml
run: cargo test --manifest-path=bitcoin-core-sv2/Cargo.toml
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ If you're looking for the low-level protocol libraries, check out the [`stratum`
- `miner-apps/` - Miner applications
- `jd-client/` - Job Declarator Client allows miners to declare custom block templates for decentralized mining
- `translator/` - Translator Proxy bridges SV1 miners to SV2 pools, enabling protocol transition
- `mining-device/` - Mining device simulator for development and testing
- `stratum-apps/` - Shared application utilities
- Configuration helpers (TOML, coinbase outputs, logging)
- Network connection utilities (Noise protocol, plain TCP, SV1 connections)
Expand Down
Loading
Loading