forked from such-gitea/wownero
Merge pull request #3775
6f859e43cryptonote: make sure outPk setup always happens (moneromooo-monero)3880bf39cryptonote_protocol_handler.inl: remove span read just now that failed to pass some basic tests (stoffu)da249fd5cryptonote_protocol_handler.inl: fix return type mismatches (int vs bool) (stoffu)e3c68b90README.md: mention building deps with -fPIC for static builds (moneromooo-monero)c1886155unit_tests: fix build after get_output_didstribution signature change (moneromooo-monero)82b05d50Adding required library (dependency of boost::this_thread::sleep_for) (Gene Peters)f9d0827bFix broken interactive daemon 'limit' commands plus RPC calls (rbrunner7)53a1962depee: Drop deprecated Boost.Thread header (Jan Beich)18c2f6e2mlog: fix setting no logs (moneromooo-monero)7346a59cBuild: update miniupnp submodule (anonimal)dad10775Only log an error if fork version is higher AND is not known. (Thaer Khawaja)ffeeefdespeedup get_output_histogram for all amounts when min_count > 0 (moneromooo-monero)2dae0f20wallet2: add missing parameters to get_output_histogram (moneromooo-monero)5bd7f760import_multisig_info: fix sanity check crash in detach_blockchain (Mikhail Mitkevichl)19e01378Build: remove UPnP definition from snap (anonimal)6b853980Build: update CMake and p2p for in-tree miniupnp (anonimal)859db52fCMake: update new location of in-tree miniupnpc (anonimal)f21df05cBuild: add miniupnp submodule (anonimal)10685648Build: remove in-tree miniupnpc (anonimal)0b88fff3simplewallet: fix help message of sign_transfer (stoffu)f82c10dcWalletManagerImpl: reuse existing connection to daemon instead of reconnectivng every time (stoffu)998c1461daemon: read config file before reading any other args (stoffu)f914df84device: add a one off override keyword where appropriate (moneromooo-monero)51b511besimplewallet: add version command (moneromooo-monero)35d1269fdaemon: add a version command (moneromooo-monero)d8584fc8util: log stack trace on crash (moneromooo-monero)875c1cabwallet2: increase rpc timeout for get_output_distribution (moneromooo-monero)70f23217add top height to get_output_distribution, and cache it for rct (moneromooo-monero)8c7363fbrpc: add missing perf timer for get_output_distribution (moneromooo-monero)b5d6c723wallet2: store subaddress lookahead settings (stoffu)3367ed86blockchain_blackball: fix build with CLANG 5 (moneromooo-monero)94b899dbUse 'boost' mutex instead of 'std' mutex (cslashm)2c274e05Fix sub-address tx scan. (cslashm)73951cbdwallet2: request transactions in slices when scanning for known rings (moneromooo-monero)25fe67e4rpc: allow getting pruned blocks from gettransactions (moneromooo-monero)08343abatx_pool: fix loading with colliding key images (moneromooo-monero)a9cc88eecommon: make this build with unbound 1.4.20 (moneromooo-monero)24acb66ewallet2: fix misc issues when the ringdb can't be initialized (moneromooo-monero)0b26c4d5wallet2: move segregation height to v7 (moneromooo-monero)eecfb57dwallet: warn if not using the default ring size (moneromooo-monero)aa5c2e01simplewallet: warn about key reuse on startup (moneromooo-monero)1e0958c0wallet: fix default mixin (4 -> 6) (sneurlax)0beb94f3device: fix endianess dependence on subaddress secret key generation (moneromooo-monero)11c933e1fix lambda compile error on openbsd (moneromooo-monero)c77d2bfaAdd the possibility to export private view key for fast scan. (cslashm)100b7bc1Change mutex lock model to avoid dead lock and ensure locks are always released. (cslashm)641dfc99Automatic height setup when creating/restoring hw device. (cslashm)dac3895aupdate block hashes for checkpoints.dat (Riccardo Spagni)b1398fffcore: fix use of uninitialised data (moneromooo-monero)
This commit is contained in:
@@ -112,7 +112,7 @@ public:
|
||||
virtual bool for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, uint64_t height, size_t tx_idx)> f) const { return true; }
|
||||
virtual bool for_all_outputs(uint64_t amount, const std::function<bool(uint64_t height)> &f) const { return true; }
|
||||
virtual bool is_read_only() const { return false; }
|
||||
virtual std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff) const { return std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>>(); }
|
||||
virtual std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff, uint64_t min_count) const { return std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>>(); }
|
||||
|
||||
virtual void add_txpool_tx(const transaction &tx, const txpool_tx_meta_t& details) {}
|
||||
virtual void update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t& details) {}
|
||||
|
||||
Reference in New Issue
Block a user