-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update tx_extra.h #9
Merged
monero-project
merged 1 commit into
monero-project:master
from
NoodleDoodleNoodleDoodleNoodleDoodleNoo:patch-7
May 14, 2014
Merged
Update tx_extra.h #9
monero-project
merged 1 commit into
monero-project:master
from
NoodleDoodleNoodleDoodleNoodleDoodleNoo:patch-7
May 14, 2014
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
NoodleDoodleNoodleDoodleNoodleDoodleNoo
commented
May 14, 2014
- Fixed bug where it's impossible to spend merge-mining blocks due to missing serialization support for "tx_etra_merge_mining_tag".
1. Fixed bug where it's impossible to spend merge-mining blocks due to missing serialization support for "tx_etra_merge_mining_tag".
monero-project
pushed a commit
that referenced
this pull request
May 14, 2014
…tch-7 Update tx_extra.h
mathstuf
pushed a commit
to mathstuf/bitmonero
that referenced
this pull request
Nov 17, 2014
Optimize cn_slow_hash
This was referenced Jun 21, 2017
shopglobal
added a commit
to cryptonote-labs/monero
that referenced
this pull request
Apr 23, 2018
Closed
RomyWeb
pushed a commit
to pyrex-coin/Pyrex
that referenced
this pull request
Oct 10, 2018
* wallet: fix default mixin (4 -> 6) * cryptonote_tx_util: make destinations properly shuffled * simplewallet: warn about key reuse on startup * wallet: warn if not using the default ring size * wallet2: move segregation height to v7 since people seem to really want to use things the wrong way. * wallet2: fix misc issues when the ringdb can't be initialized * rpc: allow getting pruned blocks from gettransactions and get them pruned in find_and_save_rings, since it does not need the pruned data in the first place. Also set decode_to_json to false where missing, we don't need this either. * wallet2: request transactions in slices when scanning for known rings This avoid massive memory consumption for huge wallets * Fix sub-address tx scan. When additional keys was needed, the TX scan failed because the derivation data was always recomputed with the main tx_key and not the corresponding additional one. Moreover this patch avoid perf decreasing when not using HW device. * Use 'boost' mutex instead of 'std' mutex * common: make this build with unbound 1.4.20 Common on currently used distros * wallet2: store subaddress lookahead settings * tx_pool: fix loading with colliding key images A key image may be present more than once if all but one of the txes spending that key image are coming from blocks. When loading a txpool from storage, we must load the one that's not from a block first to avoid rejection * blockchain_blackball: fix build with CLANG 5 It doesn't like the explicit NULL dereference (which is fine, honest) * rpc: add missing perf timer for get_output_distribution * util: log stack trace on crash * add top height to get_output_distribution, and cache it for rct This should cache the vast majority of calls for long running wallets * wallet2: increase rpc timeout for get_output_distribution * daemon: add a version command * simplewallet: add version command * device: add a one off override keyword where appropriate * daemon: read config file before reading any other args * WalletManagerImpl: reuse existing connection to daemon instead of reconnectivng every time * simplewallet: fix help message of sign_transfer * Build: remove in-tree miniupnpc Will be replaced by a submodule. * wallet2: add missing parameters to get_output_histogram * speedup get_output_histogram for all amounts when min_count > 0 This skips the vast majority of "dust" output amounts with just one instance on the chain. Clocks in at 0.15% of the original time on testnet. * import_multisig_info: fix sanity check crash in detach_blockchain * Only log an error if fork version is higher AND is not known. * Build: add miniupnp submodule Though we only need miniupnpc, rebasing and maintaining a miniupnpc-only repo is unrealistic. * CMake: update new location of in-tree miniupnpc * Build: update CMake and p2p for in-tree miniupnp * Build: remove UPnP definition from snap * slow-hash: fix memory leak for Windows /karbowanec#41 * mlog: fix setting no logs * epee: Drop deprecated Boost.Thread header In file included from src/cryptonote_basic/hardfork.cpp:33: In file included from src/blockchain_db/blockchain_db.h:42: In file included from src/cryptonote_basic/hardfork.h:31: contrib/epee/include/syncobj.h:37:10: fatal error: 'boost/thread/v2/thread.hpp' file not found #include <boost/thread/v2/thread.hpp> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/rpc/daemon_handler.cpp:29: In file included from src/rpc/daemon_handler.h:36: In file included from src/p2p/net_node.h:41: In file included from contrib/epee/include/net/levin_server_cp2.h:32: In file included from contrib/epee/include/net/abstract_tcp_server2.h:324: contrib/epee/include/net/abstract_tcp_server2.inl:44:10: fatal error: 'boost/thread/v2/thread.hpp' file not found #include <boost/thread/v2/thread.hpp> // TODO ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ contrib/epee/include/math_helper.h: In member function 'bool epee::math_helper::average<val, default_base>::set_base()': contrib/epee/include/syncobj.h:227:56: error: 'sleep_for' is not a member of 'boost::this_thread' #define CRITICAL_REGION_LOCAL(x) {boost::this_thread::sleep_for(boost::chrono::milliseconds(epee::debug::g_test_dbg_lock_sleep()));} epee::critical_region_t<decltype(x)> critical_region_var(x) ^ contrib/epee/include/syncobj.h:227:56: note: in definition of macro 'CRITICAL_REGION_LOCAL' #define CRITICAL_REGION_LOCAL(x) {boost::this_thread::sleep_for(boost::chrono::milliseconds(epee::debug::g_test_dbg_lock_sleep()));} epee::critical_region_t<decltype(x)> critical_region_var(x) ^~~~~~~~~ contrib/epee/include/syncobj.h:227:56: note: suggested alternative: 'sleep' #define CRITICAL_REGION_LOCAL(x) {boost::this_thread::sleep_for(boost::chrono::milliseconds(epee::debug::g_test_dbg_lock_sleep()));} epee::critical_region_t<decltype(x)> critical_region_var(x) ^ contrib/epee/include/syncobj.h:227:56: note: in definition of macro 'CRITICAL_REGION_LOCAL' #define CRITICAL_REGION_LOCAL(x) {boost::this_thread::sleep_for(boost::chrono::milliseconds(epee::debug::g_test_dbg_lock_sleep()));} epee::critical_region_t<decltype(x)> critical_region_var(x) ^~~~~~~~~ * [RELEASE] Fix broken interactive daemon 'limit' commands plus RPC calls * Adding required library (dependency of boost::this_thread::sleep_for)
Closed
Closed
scilicet64
referenced
this pull request
in Beldex-Coin/beldex
Mar 20, 2019
Merge monero to loki string changes
This was referenced May 23, 2019
j-berman
referenced
this pull request
in j-berman/monero
May 12, 2023
* draft: seraphis checkpoint cache
MarketKernel
added a commit
to awaik/monero
that referenced
this pull request
Aug 16, 2023
jeffro256
pushed a commit
to jeffro256/monero
that referenced
this pull request
Sep 22, 2023
Merge Seraphis library commits since June into the wallet branch
rbrunner7
pushed a commit
to rbrunner7/monero
that referenced
this pull request
Jun 28, 2024
…ault src: update internal data structure to boost::bimap.
kayabaNerve
pushed a commit
to kayabaNerve/monero
that referenced
this pull request
Jul 27, 2024
…init Remove reference from m_hash_init_point
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.