mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
30 lines
788 B
PHP
30 lines
788 B
PHP
<?php
|
|
|
|
ini_set('date.timezone', 'Canada/Eastern');
|
|
|
|
define('YAAMP_LOGS', '/var/log/yaamp');
|
|
define('YAAMP_HTDOCS', '/var/web');
|
|
|
|
define('YAAMP_DBHOST', 'localhost');
|
|
define('YAAMP_DBNAME', 'yaamp');
|
|
define('YAAMP_DBUSER', 'root');
|
|
define('YAAMP_DBPASSWORD', 'password');
|
|
|
|
define('YAAMP_PRODUCTION', true);
|
|
define('YAAMP_RENTAL', true);
|
|
define('YAAMP_LIMIT_ESTIMATE', false);
|
|
|
|
define('YAAMP_FEES_MINING', 0.5);
|
|
define('YAAMP_FEES_EXCHANGE', 2);
|
|
define('YAAMP_FEES_RENTING', 2);
|
|
define('YAAMP_PAYMENTS_FREQ', 3*60*60);
|
|
|
|
define('YAAMP_BTCADDRESS', '1Auhps1mHZQpoX4mCcVL8odU81VakZQ6dR');
|
|
define('YAAMP_SITE_URL', 'yiimp.ccminer.org');
|
|
define('YAAMP_ADMIN_EMAIL', 'yiimp@spam.la');
|
|
|
|
$cold_wallet_table = array(
|
|
'1C23KmLeCaQSLLyKVykHEUse1R7jRDv9j9' => 0.10,
|
|
);
|
|
|
|
|