Cryptocurrency mining pool written in C++ for speed. Supports Stratum.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
DROP TABLE IF EXISTS `pool_worker`;
|
|
|
|
CREATE TABLE IF NOT EXISTS `pool_worker`
|
|
|
|
(
|
|
|
|
`account_id` INT(255) NOT NULL AUTO_INCREMENT,
|
|
|
|
`username` VARCHAR(50) DEFAULT NULL,
|
|
|
|
`password` VARCHAR(50) DEFAULT NULL,
|
|
|
|
`mindiff` int(10) unsigned NOT NULL DEFAULT '1',
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
)
|
|
|
|
ENGINE = InnoDB;
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `shares`;
|
|
|
|
CREATE TABLE `shares` (
|
|
|
|
`id` INT NOT NULL AUTO_INCREMENT,
|
|
|
|
`rem_host` varchar(255) NOT NULL,
|
|
|
|
`username` varchar(120) NOT NULL,
|
|
|
|
`our_result` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
`upstream_result` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
|
`reason` varchar(50) DEFAULT NULL,
|
|
|
|
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
`difficulty` int(10) unsigned NOT NULL DEFAULT '1',
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=InnoDB;
|
|
|
|
|