initialise wallet addresses

This commit is contained in:
Craig Raw 2019-03-18 17:25:49 +02:00
parent 65e288b6de
commit 82e01f4c13

View file

@ -25,6 +25,10 @@ public class Drongo {
this.bitcoinJSONRPCClient = new BitcoinJSONRPCClient(nodeRpc.get("host"), nodeRpc.get("port"), nodeRpc.get("user"), nodeRpc.get("password")); this.bitcoinJSONRPCClient = new BitcoinJSONRPCClient(nodeRpc.get("host"), nodeRpc.get("port"), nodeRpc.get("user"), nodeRpc.get("password"));
this.watchWallets = watchWallets; this.watchWallets = watchWallets;
this.notifyRecipients = notifyRecipients; this.notifyRecipients = notifyRecipients;
for(WatchWallet wallet : watchWallets) {
wallet.initialiseAddresses();
}
} }
public void start() { public void start() {