diff options
| author | Hennadii Stepanov <[email protected]> | 2018-10-23 17:36:46 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2018-10-28 09:04:10 +0200 |
| commit | 04972fefd12c2c764b5f2afee87228e8d90f2448 (patch) | |
| tree | d2463b4511c05ffe01a074d270adaaad2e310726 /src/interfaces/wallet.h | |
| parent | Merge #14161: doc/descriptors.md tweaks (diff) | |
| download | discoin-04972fefd12c2c764b5f2afee87228e8d90f2448.tar.xz discoin-04972fefd12c2c764b5f2afee87228e8d90f2448.zip | |
Remove unused `adjustedTime` parameter
qt: After merging #13622 the `adjustedTime` is not used any more in
wallet related functions.
Diffstat (limited to 'src/interfaces/wallet.h')
| -rw-r--r-- | src/interfaces/wallet.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index 7aa91f37e..c79b9afce 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -178,16 +178,14 @@ public: //! Try to get updated status for a particular transaction, if possible without blocking. virtual bool tryGetTxStatus(const uint256& txid, WalletTxStatus& tx_status, - int& num_blocks, - int64_t& adjusted_time) = 0; + int& num_blocks) = 0; //! Get transaction details. virtual WalletTx getWalletTxDetails(const uint256& txid, WalletTxStatus& tx_status, WalletOrderForm& order_form, bool& in_mempool, - int& num_blocks, - int64_t& adjusted_time) = 0; + int& num_blocks) = 0; //! Get balances. virtual WalletBalances getBalances() = 0; |