mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
initialise wallet addresses
This commit is contained in:
parent
65e288b6de
commit
82e01f4c13
1 changed files with 4 additions and 0 deletions
|
@ -25,6 +25,10 @@ public class Drongo {
|
|||
this.bitcoinJSONRPCClient = new BitcoinJSONRPCClient(nodeRpc.get("host"), nodeRpc.get("port"), nodeRpc.get("user"), nodeRpc.get("password"));
|
||||
this.watchWallets = watchWallets;
|
||||
this.notifyRecipients = notifyRecipients;
|
||||
|
||||
for(WatchWallet wallet : watchWallets) {
|
||||
wallet.initialiseAddresses();
|
||||
}
|
||||
}
|
||||
|
||||
public void start() {
|
||||
|
|
Loading…
Reference in a new issue