Skip to content
Draft
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: 1 addition & 1 deletion bitcoin-core-sv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ bitcoin_capnp_types_v31 = { package = "bitcoin-capnp-types", version = "0.2.1" }
# fetching from github enables synchronizing development workflows across sv2-apps and stratum repos
# it MUST be changed before bitcoin-core-sv2 is published to crates.io
# with the proper version of stratum-core being fetched from crates.io as well
stratum-core = { git = "https://github.com/stratum-mining/stratum", branch = "main" }
stratum-core = { git = "https://github.com/marafoundation/stratum", branch = "feat/configurable-max-past-jobs" }
34 changes: 17 additions & 17 deletions integration-tests/Cargo.lock

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

34 changes: 17 additions & 17 deletions miner-apps/Cargo.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ monitoring_address = "0.0.0.0:9091"
monitoring_cache_refresh_secs = 15

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ monitoring_address = "0.0.0.0:9091"
monitoring_cache_refresh_secs = 15

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ monitoring_address = "0.0.0.0:9091"
monitoring_cache_refresh_secs = 15

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ monitoring_address = "0.0.0.0:9091"
monitoring_cache_refresh_secs = 15

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ upstreams = []
# Templates come directly from the Template Provider below.

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ monitoring_address = "0.0.0.0:9091"
monitoring_cache_refresh_secs = 15

# LAN subnet containing ASIC miner web/API addresses (for example, 192.168.1.0/24).
# Past jobs retained per channel for late-share validation (optional). Unset or 0 uses
# the channels_sv2 default (16), which covers the fastest configurable template cadence.
# Set `ceil(16s / your template period)` to reclaim memory: 3 at a typical 6s mainnet
# cadence is 13.5 kB per channel instead of 72.
# max_past_jobs = 3

[miner_telemetry]
cidrs = ["192.168.1.0/24"]

Expand Down
Loading
Loading