get the current wallet format (the oldest client version guaranteed to understand this wallet)
| 758 | |
| 759 | //! get the current wallet format (the oldest client version guaranteed to understand this wallet) |
| 760 | int GetVersion() const { LOCK(cs_wallet); return nWalletVersion; } |
| 761 | |
| 762 | //! Get wallet transactions that conflict with given transaction (spend same outputs) |
| 763 | std::set<uint256> GetConflicts(const uint256& txid) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet); |
no outgoing calls