Skip to content
Open
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
3 changes: 2 additions & 1 deletion public/include/classes/bitcoin.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,5 @@ public function validateaddress($coin_address) {
}

// Load this wrapper
$bitcoin = new Bitcoin($config['wallet']['type'], $config['wallet']['username'], $config['wallet']['password'], $config['wallet']['host'], DEBUG);
// Heihachi: added NULL to make the __construct function happy when DEBUG != 0
$bitcoin = new Bitcoin($config['wallet']['type'], $config['wallet']['username'], $config['wallet']['password'], $config['wallet']['host'], NULL, DEBUG);
1 change: 1 addition & 0 deletions sql/000_base_structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ CREATE TABLE IF NOT EXISTS `settings` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `settings` (`name`, `value`) VALUES ('DB_VERSION', '0.0.1');
INSERT INTO `settings` (`name`, `value`) VALUES ('website_theme', 'faucet');

CREATE TABLE IF NOT EXISTS `tokens` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
Expand Down