diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2020-05-19 15:11:45 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2020-08-12 16:31:23 +0200 |
commit | 25e1d0bf417237caa5d36b4e757f29e6c8be8aad (patch) | |
tree | 28e5a2da0dd7c57579d9ea5be5c2f8f93878f99b /src/qt/rpcconsole.h | |
parent | ce3bdd0ed1bbfeaa19a5b75dc07943118826f930 (diff) |
RPCConsole, take initial chaintip data as parameter
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index de8e37cca2..280c5bd71a 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -46,7 +46,7 @@ public: return RPCParseCommandLine(&node, strResult, strCommand, true, pstrFilteredOut, wallet_model); } - void setClientModel(ClientModel *model); + void setClientModel(ClientModel *model = nullptr, int bestblock_height = 0, int64_t bestblock_date = 0, double verification_progress = 0.0); void addWallet(WalletModel * const walletModel); void removeWallet(WalletModel* const walletModel); |