Skip to content

Commit

Permalink
Merge pull request monero-project#3775
Browse files Browse the repository at this point in the history
6f859e4 cryptonote: make sure outPk setup always happens (moneromooo-monero)
3880bf3 cryptonote_protocol_handler.inl: remove span read just now that failed to pass some basic tests (stoffu)
da249fd cryptonote_protocol_handler.inl: fix return type mismatches (int vs bool) (stoffu)
e3c68b9 README.md: mention building deps with -fPIC for static builds (moneromooo-monero)
c188615 unit_tests: fix build after get_output_didstribution signature change (moneromooo-monero)
82b05d5 Adding required library (dependency of boost::this_thread::sleep_for) (Gene Peters)
f9d0827 Fix broken interactive daemon 'limit' commands plus RPC calls (rbrunner7)
53a1962 epee: Drop deprecated Boost.Thread header (Jan Beich)
18c2f6e mlog: fix setting no logs (moneromooo-monero)
7346a59 Build: update miniupnp submodule (anonimal)
dad1077 Only log an error if fork version is higher AND is not known. (Thaer Khawaja)
ffeeefd speedup get_output_histogram for all amounts when min_count > 0 (moneromooo-monero)
2dae0f2 wallet2: add missing parameters to get_output_histogram (moneromooo-monero)
5bd7f76 import_multisig_info: fix sanity check crash in detach_blockchain (Mikhail Mitkevichl)
19e0137 Build: remove UPnP definition from snap (anonimal)
6b85398 Build: update CMake and p2p for in-tree miniupnp (anonimal)
859db52 CMake: update new location of in-tree miniupnpc (anonimal)
f21df05 Build: add miniupnp submodule (anonimal)
1068564 Build: remove in-tree miniupnpc (anonimal)
0b88fff simplewallet: fix help message of sign_transfer (stoffu)
f82c10d WalletManagerImpl: reuse existing connection to daemon instead of reconnectivng every time (stoffu)
998c146 daemon: read config file before reading any other args (stoffu)
f914df8 device: add a one off override keyword where appropriate (moneromooo-monero)
51b511b simplewallet: add version command (moneromooo-monero)
35d1269 daemon: add a version command (moneromooo-monero)
d8584fc util: log stack trace on crash (moneromooo-monero)
875c1ca wallet2: increase rpc timeout for get_output_distribution (moneromooo-monero)
70f2321 add top height to get_output_distribution, and cache it for rct (moneromooo-monero)
8c7363f rpc: add missing perf timer for get_output_distribution (moneromooo-monero)
b5d6c72 wallet2: store subaddress lookahead settings (stoffu)
3367ed8 blockchain_blackball: fix build with CLANG 5 (moneromooo-monero)
94b899d Use 'boost' mutex instead of 'std' mutex (cslashm)
2c274e0 Fix sub-address tx scan. (cslashm)
73951cb wallet2: request transactions in slices when scanning for known rings (moneromooo-monero)
25fe67e rpc: allow getting pruned blocks from gettransactions (moneromooo-monero)
08343ab tx_pool: fix loading with colliding key images (moneromooo-monero)
a9cc88e common: make this build with unbound 1.4.20 (moneromooo-monero)
24acb66 wallet2: fix misc issues when the ringdb can't be initialized (moneromooo-monero)
0b26c4d wallet2: move segregation height to v7 (moneromooo-monero)
eecfb57 wallet: warn if not using the default ring size (moneromooo-monero)
aa5c2e0 simplewallet: warn about key reuse on startup (moneromooo-monero)
1e0958c wallet: fix default mixin (4 -> 6) (sneurlax)
0beb94f device: fix endianess dependence on subaddress secret key generation (moneromooo-monero)
11c933e fix lambda compile error on openbsd (moneromooo-monero)
c77d2bf Add the possibility to export private view key for fast scan. (cslashm)
100b7bc Change mutex lock model to avoid dead lock and ensure locks are always released. (cslashm)
641dfc9 Automatic height setup when creating/restoring hw device. (cslashm)
dac3895 update block hashes for checkpoints.dat (Riccardo Spagni)
b1398ff core: fix use of uninitialised data (moneromooo-monero)
  • Loading branch information
fluffypony committed May 8, 2018
2 parents 40070a6 + 6f859e4 commit 20ef37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/hardfork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class TestDB: public BlockchainDB {
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) {}
Expand Down

0 comments on commit 20ef37b

Please sign in to comment.