Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Release 57

Compare
Choose a tag to compare
@oliverw oliverw released this 16 Jul 15:43
· 621 commits to master since this release
e06baab

Changes

  • Multiple performance and stability improvements
  • This release adds support for per-miner payment thresholds which if set override pool payment thresholds. There are two new admin API endpoints associated with this feature. One for querying and one for editing.

Required Database Migrations

Be sure to apply these migrations to existing databases or Miningcore will produce errors after the update.

ALTER TABLE balance_changes ADD tags text[] NULL;
CREATE INDEX IDX_BALANCE_CHANGES_POOL_TAGS on balance_changes USING gin (tags);

CREATE TABLE miner_settings
(
 poolid TEXT NOT NULL,
 address TEXT NOT NULL,
 paymentthreshold decimal(28,12) NOT NULL,
 created TIMESTAMP NOT NULL,
 updated TIMESTAMP NOT NULL,

 primary key(poolid, address)
);