Added check for using own node
This commit is contained in:
parent
e533f87d08
commit
0e1e7a4d12
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ void checkBitcoinBlock(void *pvParameters)
|
||||||
|
|
||||||
HTTPClient http;
|
HTTPClient http;
|
||||||
http.setReuse(true);
|
http.setReuse(true);
|
||||||
useBitcoind = wifiClientInsecure.connect(preferences.getString("rpcHost", BITCOIND_HOST).c_str(), preferences.getUInt("rpcPort", BITCOIND_PORT));
|
useBitcoind = preferences.getBool("useNode", false) && wifiClientInsecure.connect(preferences.getString("rpcHost", BITCOIND_HOST).c_str(), preferences.getUInt("rpcPort", BITCOIND_PORT));
|
||||||
if (useBitcoind)
|
if (useBitcoind)
|
||||||
Serial.println("bitcoind node is reachable, using this for blocks.");
|
Serial.println("bitcoind node is reachable, using this for blocks.");
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue