Skip to content

Commit 8dba76c

Browse files
committed
add bit about daemon not being fully synced
1 parent cdc3bbb commit 8dba76c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

include/pages/admin/checks/check_daemon.inc.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
$newerror['level'] = 3;
1010
$newerror['description'] = "Unable to connect to coin daemon using provided credentials.";
1111
$newerror['configvalue'] = "wallet.*";
12-
$newerror['extdesc'] = "We weren't able to connect to your coin daemon using the host/username/password/port given in the config. Check that your coin daemon is running and mpos is configured with the data from your coin daemon config.";
12+
$newerror['extdesc'] = "We weren't able to connect to your coin daemon using the host/username/password/port given in the config. Check that your coin daemon is running and mpos is configured with the data from your coin daemon config. Your coin daemon may also not yet be fully synced.";
1313
$newerror['helplink'] = "https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-local-wallet-rpc";
1414
$error[] = $newerror;
1515
$newerror = null;
@@ -33,7 +33,7 @@
3333
$newerror = array();
3434
$newerror['name'] = "Coin daemon";
3535
$newerror['level'] = 3;
36-
$newerror['extdesc'] = "You need at least one account to be able to pay miners! See the above link for more details.";
36+
$newerror['extdesc'] = "You need at least one account to be able to pay miners! Your coin daemon may not yet be fully synced, see the above link for more details.";
3737
$newerror['description'] = "There are " . count($accounts) . " Accounts set in local Wallet and Default Account has no liquid funds to pay your miners!";
3838
$newerror['configvalue'] = "wallet.host";
3939
$newerror['helplink'] = "https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-local-wallet-rpc";

include/pages/admin/checks/check_stratum.inc.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
$newerror = array();
1717
$newerror['name'] = "Stratum information";
1818
$newerror['level'] = 1;
19-
$newerror['extdesc'] = "We tried to connect the stratum server that you set in your gettingstarted config, but an error occured somewhere along the way. Your stratum server may not be running currently, your firewall could be blocking the connection, etc.";
19+
$newerror['extdesc'] = "We tried to connect the stratum server that you set in your gettingstarted config, but an error occured somewhere along the way. Your stratum server may not be running currently, your firewall could be blocking the connection, or your coin daemon may not yet be fully synced, etc.";
2020
$newerror['description'] = "We tried to poke your Stratum server using your \$config['gettingstarted'] settings but it didn't respond - " . socket_strerror(socket_last_error()) . ".";
2121
$newerror['configvalue'] = "gettingstarted";
2222
$newerror['helplink'] = "https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-getting-started";
@@ -29,7 +29,7 @@
2929
$newerror = array();
3030
$newerror['name'] = "Stratum information";
3131
$newerror['level'] = 1;
32-
$newerror['extdesc'] = "We tried to connect the stratum server that you set in your gettingstarted config, but an error occured somewhere along the way. Your stratum server may not be running currently, your firewall could be blocking the connection, etc.";
32+
$newerror['extdesc'] = "We tried to connect the stratum server that you set in your gettingstarted config, but an error occured somewhere along the way. Your stratum server may not be running currently, your firewall could be blocking the connection, or your coin daemon may not yet be fully synced, etc.";
3333
$newerror['description'] = "We tried to poke your Stratum server using your \$config['gettingstarted'] settings but it didn't respond.";
3434
$newerror['configvalue'] = "gettingstarted";
3535
$newerror['helplink'] = "https://github.com/MPOS/php-mpos/wiki/Config-Setup#wiki-getting-started";

0 commit comments

Comments
 (0)