Long-term, safe, store-of-value #2

issue gavinandresen opened this issue on December 19, 2010
  1. gavinandresen commented at 4:22 PM on December 19, 2010: contributor

    Should we add features to bitcoin to enable the use of bitcoins as a long-term, secure, store-of-value for wealth?

    Possible features to enable this type of use:

    • Easy yet ultra-safe way to export part of you wallet's balance to a file.
    • Easy way to verify the balance stored in one of those exported files.
  2. davout commented at 7:01 PM on December 20, 2010: none

    File should be human-readable

  3. mgiuca commented at 6:23 AM on February 17, 2011: contributor

    Seconded. I have been using Bitcoin for a couple of days, and while many users will not care about the details, I want to know (at least during my initial testing of the system) exactly how it works. This will help me, and other tech-savvy users understand the security implications.

    To me, the biggest "black box" of the whole system is the wallet. It's a binary blob which I am told to keep backed up or else. It's unclear to me how I would restore it without erasing recent transactions. I'm not sure which data is stored in it and which is not -- from the look of some other bugs here, it seems to store more data than just the public/private keys (such as config data). Does it store the names I have associated with the addresses? (I wouldn't want to lose my PC, restore my wallet.dat, and discover I can't tell who sent me what, so I'd hope it does store those names.) Does it store sending addresses? (I don't think it should, as that's more of an address book than a crucial wallet.) And it isn't encrypted with a password.

    I'm not asking for answers to these questions -- I can find them out if I really want to. I'm saying that these answers should be immediately obvious from inspecting the wallet file. There should be nothing "magical" about this file, for an advanced user.

    I would like to see a transition to a "Wallet 2.0" file format, which is simply a PGP-encrypted text file (so, binary, but a simple gpg -d will get the text out). I should be able to encrypt it with either a symmetric or public key.

    Inside the file, there would be a simple ASCII format, such as: <address> (active|inactive) [name] <pub-key> <priv-key>

    with one address per line (or split into "sections" if the pub-key and priv-key are too long to put on a single line). The active|inactive determines whether the address shows up as a receive address in the GUI (so when it pre-generates 100 addresses, they all show up here, and are all marked inactive until the user presses "New Address" in the UI).

    This would only contain receiving addresses. Sending addresses would be in a separate address book file, which would hopefully also be a text file, and I could back up too if I wanted to but isn't critical.

    Now, at a glance, I (as a technical user) can tell exactly what data is stored in the wallet. And it should be significantly easier to write tools for listing all the money associated with each account in the wallet, splitting up a wallet into separate files, and so on.

  4. Kiv commented at 1:28 AM on March 6, 2011: none

    Agree about human readable, I would love to actually understand the contents of my wallet.

  5. gavinandresen commented at 9:21 PM on March 6, 2011: contributor

    See my bitcointools tree for a (python) tool that dumps out the information in the wallet in a human-readable form.

  6. sipa commented at 10:31 PM on March 12, 2011: member

    I'm currently working on a patch that will allow export and import of wallets in a human readable form.

    The format i've been using currently has lines of this form: [privatekey] [block nr of earlest unredeemed output to this key] # [address] [available BTC]

    The part after the # is optional, since only the private key suffices, the rest can be derived, The block number was suggested by Gavin on the forum somewhere, as an optimization.

    Maybe adding address labels is useful as well.

  7. mgiuca commented at 1:41 AM on March 13, 2011: contributor

    There has been some discussion relating to a so-called ".bitkeys" format, which would be a standardised human-readable text file format for storing Bitcoin private key data. It seems to have been suggested here by [mike]: http://www.bitcoin.org/smf/index.php?topic=3638.40

    I don't know if the format discussion has moved elsewhere, but you should try to be compatible with this format.

    Basically, this means your file should start with v=1 (version, I assume). Exporter should write v=1, importer should check for v=1.

    Otherwise, what you suggest is almost right, but the private key and block number should be comma-separated: base58 encoded privkey,block number # comment

    Everything after the hash is a comment. You said it was "optional" but that sort of implies that your software will possibly be looking for an address and available BTC. It should not, since the format should allow arbitrary machine-ignored text after the #. So your exporter should write # [address] [available BTC] or whatever you want, but your importer should completely ignore everything after the comment and just use the privatekey to derive the public key and address.

    Also note, if you haven't written the code for this already, that I already implemented, in C using OpenSSL, the code to take a 32-byte private key and generate the full 279-byte DER key (which Bitcoin internally calls the "private key") and 65-byte public key. My intention was for my code to eventually be used inside Bitcoin itself, so please use it if you can:

    It is currently a command-line program which takes the private key as input and produces the DER key (of which the public key is a substring), but it is very well documented and could easily be adapted into a bitkeys file reader.

  8. sipa commented at 2:27 AM on March 13, 2011: member

    Sure, that thread is where i got the idea, i couldn't remember where it was. The code for importing and exporting private keys also already exists, see http://www.bitcoin.org/smf/index.php?topic=3906. The hard part is keeping the data structures in bitcoind intact and up to date when importing things.

    The precise formatting is only a detail that can easily be changed. Clearly, the importer will ignore everything after a #, as the address and available BTC to an address can be derived from the private key and the block chain, but still useful for human readers, so the exporter will put them in comments.

    Maybe we should start the format discussion again, since there are additional useful things to put in such a file, it seems. Whether or not the key is only a reserve key, a possible label for a key, ...

  9. TheBlueMatt referenced this in commit 44baaa6dbd on May 24, 2011
  10. khalahan referenced this in commit e464650033 on Nov 1, 2011
  11. khalahan referenced this in commit 3e3a016a4a on Nov 1, 2011
  12. luke-jr referenced this in commit fce3a3f3c2 on Jul 24, 2012
  13. nelisky referenced this in commit 1f90abd156 on Apr 4, 2013
  14. enterprisey commented at 9:02 PM on April 25, 2013: contributor

    +1 on human-readable.

  15. laanwj commented at 5:56 AM on April 26, 2013: member

    No +1ing here please. If you comment, add something substantial. Otherwise, code or gtfo :)

  16. jgarzik commented at 5:58 AM on April 26, 2013: contributor

    I think this issue is too vague and outside the scope of what we normally consider issues/pull reqs, these days. Recommend closing.

  17. Diapolo commented at 9:28 AM on April 26, 2013: none

    @jgarzik ACK

  18. gavinandresen closed this on Apr 26, 2013

  19. nelisky referenced this in commit e6b2f1b3d3 on May 30, 2013
  20. sipa referenced this in commit bf12fcc060 on Jun 2, 2013
  21. maxpwr referenced this in commit 1868efe8dd on Jun 24, 2013
  22. rebroad referenced this in commit c6f09fe7d3 on Jun 22, 2014
  23. rdponticelli referenced this in commit 8b3263b638 on Nov 26, 2014
  24. dexX7 referenced this in commit efbf553e05 on Mar 25, 2015
  25. jtimon referenced this in commit 0ca9cc5195 on May 13, 2015
  26. brishtiteveja referenced this in commit 91864eeaa9 on Jan 25, 2016
  27. destenson referenced this in commit b6a77be035 on Jun 26, 2016
  28. MarcoFalke referenced this in commit 3650668cdb on Sep 25, 2016
  29. laanwj referenced this in commit 3665483be7 on Nov 3, 2016
  30. ptschip referenced this in commit 0ee552238c on Dec 25, 2016
  31. practicalswift referenced this in commit 9c184a7b41 on Feb 28, 2017
  32. deadalnix referenced this in commit a7b21f4ff0 on Mar 3, 2017
  33. dooglus referenced this in commit 209ecd8cd9 on Mar 27, 2017
  34. sanch0panza referenced this in commit b0e16fb981 on May 5, 2017
  35. sanch0panza referenced this in commit 653ca663d3 on May 5, 2017
  36. deadalnix referenced this in commit 2176d4e125 on May 11, 2017
  37. rawodb referenced this in commit 7f92d07958 on Jun 3, 2017
  38. kleetus referenced this in commit 641c12c35b on Jun 13, 2017
  39. AkioNak referenced this in commit d649c1cb27 on Jul 24, 2017
  40. laanwj referenced this in commit b13a68e129 on Aug 2, 2017
  41. jimhashhq referenced this in commit 281b1b25cc on Aug 2, 2017
  42. fametrano referenced this in commit ecbd242045 on Aug 4, 2017
  43. JeremyRubin referenced this in commit 7f378349b2 on Aug 9, 2017
  44. Sjors referenced this in commit 981b0ce5a6 on Aug 31, 2017
  45. MarcoFalke referenced this in commit 95f7165000 on Sep 29, 2017
  46. MarcoFalke referenced this in commit daf1285af6 on Sep 29, 2017
  47. MarcoFalke referenced this in commit 619bb05037 on Sep 29, 2017
  48. laanwj referenced this in commit 16fff80257 on Nov 30, 2017
  49. MarcoFalke referenced this in commit 351fadd68a on Dec 19, 2017
  50. MarcoFalke referenced this in commit 88411e98e5 on Dec 19, 2017
  51. classesjack referenced this in commit 99fea73224 on Jan 2, 2018
  52. nining referenced this in commit 6b4e56d7b1 on Jan 3, 2018
  53. nining referenced this in commit 2fd2acd27a on Jan 3, 2018
  54. nining referenced this in commit 2b5ff3c9fa on Jan 3, 2018
  55. DaElf referenced this in commit 35f0a4e2e9 on Jan 10, 2018
  56. hkjn referenced this in commit 3aab98f8dc on Jan 13, 2018
  57. hkjn referenced this in commit 7e80175d2b on Feb 23, 2018
  58. HashUnlimited referenced this in commit fb8585691c on Mar 9, 2018
  59. HashUnlimited referenced this in commit b84bc05530 on Mar 12, 2018
  60. KrzysiekJ referenced this in commit bd5f50ef74 on Mar 28, 2018
  61. dagurval referenced this in commit f6ec952874 on Mar 28, 2018
  62. MarcoFalke referenced this in commit 4d550ffab6 on Jul 30, 2018
  63. Empact referenced this in commit d664ff7740 on Aug 1, 2018
  64. hashtobewild referenced this in commit dc5aa1e51e on Aug 26, 2018
  65. laanwj referenced this in commit 2d4749b366 on Sep 17, 2018
  66. dooglus referenced this in commit 0383470a96 on Oct 19, 2018
  67. cryptapus referenced this in commit 20a39bbed7 on Dec 14, 2018
  68. MarcoFalke referenced this in commit 80112b17e7 on Mar 2, 2019
  69. MarcoFalke referenced this in commit 6899ef3f0e on Jun 11, 2019
  70. gertjaap referenced this in commit 42596c8f87 on Jun 13, 2019
  71. gertjaap referenced this in commit 327046742d on Jun 13, 2019
  72. MarcoFalke referenced this in commit 98958c81f5 on Jun 17, 2019
  73. MarcoFalke referenced this in commit 4aaeb04497 on Oct 22, 2019
  74. laanwj referenced this in commit 89e93135ae on Nov 10, 2019
  75. MarcoFalke referenced this in commit cf43f3f0a8 on Dec 5, 2019
  76. MarcoFalke referenced this in commit bb03765e2d on Dec 8, 2019
  77. fanquake referenced this in commit c8e65ade09 on Dec 9, 2019
  78. Warchant referenced this in commit 7958da26e8 on Dec 31, 2019
  79. velesnetwork referenced this in commit a9ec425424 on Jan 12, 2020
  80. velesnetwork referenced this in commit 06986f230b on Jan 12, 2020
  81. laanwj referenced this in commit 66480821b3 on Feb 10, 2020
  82. hebasto referenced this in commit c932897b13 on Jun 3, 2020
  83. MarcoFalke referenced this in commit 505b4eda55 on Jul 10, 2020
  84. laanwj referenced this in commit 31bdd86631 on Jul 15, 2020
  85. laanwj referenced this in commit 924a4ff7eb on Oct 29, 2020
  86. MarcoFalke referenced this in commit 027e51f715 on Nov 12, 2020
  87. jonasschnelli referenced this in commit c33662a0ea on Dec 2, 2020
  88. KolbyML referenced this in commit 3d9f0283ff on Dec 5, 2020
  89. laanwj referenced this in commit e520e091db on Jan 6, 2021
  90. rajarshimaitra referenced this in commit 46d92fc46e on Mar 23, 2021
  91. rajarshimaitra referenced this in commit 1a26a65313 on Mar 23, 2021
  92. MarcoFalke referenced this in commit 590e49ccf2 on Apr 4, 2021
  93. MarcoFalke referenced this in commit bce09da122 on Apr 28, 2021
  94. fanquake referenced this in commit fa00bb2c5c on Apr 29, 2021
  95. MarcoFalke referenced this in commit eb9a1fe037 on May 7, 2021
  96. laanwj referenced this in commit ee9befe8b4 on May 12, 2021
  97. MarcoFalke referenced this in commit c857148636 on May 15, 2021
  98. satindergrewal referenced this in commit 79f824d169 on Jun 22, 2021
  99. MarcoFalke referenced this in commit eb1f5706df on Sep 9, 2021
  100. rrybarczyk referenced this in commit afc21f7e9e on Sep 21, 2021
  101. rrybarczyk referenced this in commit 3d568fb7c9 on Sep 21, 2021
  102. MarcoFalke locked this on Dec 16, 2021
  103. russeree referenced this in commit 2e689066de on Mar 15, 2023
  104. DrahtBot added the label CI failed on Apr 11, 2023
  105. MarcoFalke removed the label CI failed on Apr 11, 2023
Linked (view graph)
#156 UPnP segfault#340 bug introduced in 0.3.23, crash when no network interfaces up.#447 RPC 'sendfrom' with invalid address crashes bitcoind#672 bitcoin-qt crashes in db on startup#737 Deadlock during startup (Appears to be AddAddress / DNSSeed related)#982 Startup blocks on mutex at "Loading Addresses"#999 v0.6.0rc5 segfault on initial blockchain download when out of diskspace#1065 addrMan crash on CentOS#1098 segfault in qrcode message dialog#1156 Addrman crash#1182 bitcoin-qt usually SEGVs when exited using unix signals#1294 NULL ptr deref when press Ctrl+C right after starting bitcoind#1472 detachdb - coredump backtrace#1505 Boost exceptions in ReadConfigFile() not caught#1831 JSON parsing in QT debug window#1950 Bitcoind crashes when -datadir directory doesn't exist#2105 backupwallet always returns true even if failed.#2397 ReserveKeyFromKeyPool(): read failed#2416 Bitcoind aborts on startup: ./db/skiplist.h:152 Assertion `n >= 0' failed.#2417 Split processing on replay not as robust as it could be.#2472 System error: database corrupted: void boost::recursive_mutex::lock(): Assertion `!pthread_mutex_lock(&m)' failed#3977 [soft fork] Block v3: miner commitments with compact proofs#3997 crash in CMerkleTx::GetDepthInMainChainINTERNAL()#4276 Invalid argument with ... no argument present#4410 bitcoin-qt core dumping#4502 GetMyExternalIP hangs shutdown when waiting for response#4523 Stuck in futex(0xb71905fc, FUTEX_WAIT_PRIVATE, 1, NULL#4995 null pointer of pindexPrev crash.#5698 Code vulnerable to segfault after a network fork#5795 Bizarre test_bitcoin crash, but passes in debugger#5884 BUGFIX: Stack around the variable 'rv' was corrupted#5910 Gitian 64-bit bitcoin-qt segfaults on Ubuntu 14.04#6332 Segmentation fault on bitcoind or bitcoin-qt startup (64bit Linux)#6411 connection limit calculation for select() is overly ambitious with -txindex#6540 scheduler_tests (currently disabled) occasionally deadlocks#6775 Bitcoind v0.11.0 segfaults on startup trying to read wallet.#8074 Bitcoin Fatal Internal Errors#8984 GUI hangs during sync#9687 bitcoin-qt crashed in FinalizeNode()#9759 Setting -maxsigcachesize to zero causes segfault#9881 v0.14.0rc2 crash on shutdown#9883 [Qt] Segfault on startup#9997 Running out of disk space during GUI init results in hang and non-drawing windows#10209 Stalled shutdown#10210 Frozen (for 15 minutes) on shutdown [dnsseed thread]#10293 SEGV in segwit fundrawtransaction#10611 Gitian build (current master) crashes on OSX#10850 bitcoind aborts at shutdown#10861 Segfault on shutdown after pressing 'q' to postpone utxo db upgrade#11114 CScript += operator double free if destination and operand are the same.#11123 Issue running windows signer for 0.15.0rc2#11312 crash when specifying path for -wallet=#11355 LevelDB read failure: Corruption: block checksum mismatch#11763 deadlock on shutdown#11783 Fix shutdown in case of errors during initialization#11938 reindex reopen readonly blocks to write#12038 deadlock on database corruption#12229 Shutdown deadlock in SyncWithValidationInterfaceQueue#12279 shutdown took 8 minutes in v0.15.0.1#12690 LevelDB "corrupted compressed block contents" errors#12915 Segmentation fault in util: ScheduleBatchPriority#12943 Segfault on startup at a04440#13316 make check fails for configure option --with-incompatible-bdb and Berkeley DB 5.3#13578 [depends, zmq, doc] upgrade zeromq to 4.2.5 and avoid deprecated zeromq api functions#13806 qa: Fix bench/block_assemble assert failure#14330 [tests] segfault during`DEBUG=1` run of existing_data_no_obfuscate locally#14349 mac: make check failure on macOS 10.14#14359 bitcoin-qt hangs in futex() / __cxa_guard_acquire()#14754 bitcoin-qt hangs on startup on Ubuntu 18.10/Debian Buster#14842 segfault in bench_bitcoin if configured using --with-libs=no#14923 segmentation fault on gui startup#14967 TSAN issue in cuckoocache_erase_parallel_ok test after 14935#15227 bitcoind terminated with uncaught exception if configure --debug-enabled#15296 tests: Add script checking for deterministic line coverage in unit tests#15300 rpc: segfault if combinepsbt called with empty inputs#15310 gui: crash if encrypt / change passphrase window is open and wallet is unloaded#15379 bitcoind crashes after exception in scheduler thread#15674 Segmentation fault on Ubuntu Linux with trickle#15819 macOS: crash while loading wallet with berkeley-db@4#16133 ThreadSanitizer intermittently reports data race when shutting down node#16143 tests: Mark unit test blockfilter_index_initial_sync as non-deterministic#16157 Line coverage non-determinism in unit test(s) calling SerializeFileDB#16221 tests: Mark test coins_tests/updatecoins_simulation_test as non-deterministic#16225 tests: Make coins_tests/updatecoins_simulation_test deterministic#16307 scheduler: crash after releasing wallet#16320 ci: Add Travis check to make sure unit test coverage reports stay deterministic#16875 gui: Avoid calling processEvents#16904 Bus error (core dumped) after "Using obfuscation key for" log line#17149 Potential PSBT issues found by the PSBT fuzzer#17205 ci: Enable address sanitizer (ASan) stack-use-after-return checking#17427 qt: Fix missing qRegisterMetaType for size_t#17540 ci build fails in ./qt/test/test_bitcoin-qt on aarch64 native tsan#17620 MemorySanitizer complains about unitialized variable in RPC method names#17627 Suppress false positive warning about uninitialized entropy buffers#17674 tests: Add initialization order fiasco detection in Travis#17685 tests: Fix bug in the descriptor parsing fuzzing harness (descriptor_parse)#17695 gui: disable File->CreateWallet during startup#17729 Fuzzing Bug undefined-behavior pubkey.cpp:210:38#18033 GetMappedAS(...) lookup on an IPv6 address against a maliciously constructed AS-map triggers heap buffer-overflow#18046 Some fuzzing crashes when running under ASan and/or UBSan#18090 gui: Crash if shutdown during processNewTransaction#18362 gui: segfault unloading and immediately reloading wallet with gui#18372 sanitizer: heap-use-after-free in checkinputs_test#18456 bitcoin-qt/bitcoind crashes upon startup of crypto/sha256_shani. Illegal instruction#18706 crash briefly after launching binaries compiled using --without-gui and --with-incompatible-bdb#18762 fuzz: AddressSanitizer: SEGV on unknown address in /strprintf#18763 fuzz: AddressSanitizer: container-overflow in /script fuzzer#18913 ci: fuzz/process_message fails#18924 QT Crash when using open wallet dialog#18948 qt: Call setParent() in the parent's context#19024 UB: double lock of mutex in init.cpp#19034 Small memory leak when BerkeleyEnvironment::Open fails#19049 test: Potential deadlock in wallet_tests/CreateWalletFromFile#19140 tests: Avoid fuzzer-specific nullptr dereference in libevent when handling PROXY requests#19211 feature_reindex.py triggers data race#19278 Three UBSan warnings when loading corrupt mempool.dat files#19353 Fix mistakenly swapped "previous" and "current" lock orders#19417 Intermittent CI failure: ThreadSanitizer failure (data race) when running wallet_multiwallet.py --usecli#19448 qa: Data race detected when running `mempool_expiry.py`#19678 UBSan warning when fuzzing with -fsanitize=integer#19715 ThreadSanitizer: data race in feature_reindex.py#19789 fuzz: ASAN complaint on macOS with -fsanitize=fuzzer,address,undefined#19955 test: Potential deadlock in wallet_tests#19964 Installing from the source code. Error during "make" that probably has to do with boost lib and CXXLD#20089 validation: Increase robustness when loading malformed mempool.dat files (LoadMempool)#20163 TSAN race after merge of #20090#20242 fuzz: Properly initialize PrecomputedTransactionData#20334 ci: fuzz/decode_tx fails#20372 Avoid signed integer overflow when loading a mempool.dat file with a malformed time field#20381 "may be used uninitialized" warning in wallet/rpcwallet.cpp#20542 Unexpected test fail: wallet/wallet.cpp:3113:51: runtime error: division by zero#20607 Signed integer overflow in CFeeRate::GetFee(…) reachable via RPC call analyzepsbt#20618 Data race in interface_zmq.py#20776 gui: SIGSEGV when starting v0.21.0rc3#20844 test: Add sanitizer suppressions for AMD EPYC CPUs#20894 Build: Errors "make install" version 0.21 on Manjaro.#20914 Null pointer derefence in CBlockIndexWorkComparator::operator() reachable via RPC call invalidateblock#21466 Avoid use of "socket" syscall when formatting IP addresses in CNetAddr::ToString#21479 fuzz: UndefinedBehaviorSanitizer warnings in netbase.cpp#21584 Fix assumeutxo crash due to invalid base_blockhash#21586 test: Add missing suppression for signed-integer-overflow:txmempool.cpp#21605 wallet: Segmentation fault during sync#21632 MemorySanitizer: use-of-uninitialized-value in sqlite3BtreeOpen#21773 fuzz: Ensure prevout is consensus-valid#21802 refactor: Avoid UB in util/asmap (advance a dereferenceable iterator outside its valid range)#21948 test: Fix off-by-one in mockscheduler test RPC#22233 fuzz: UndefinedBehaviorSanitizer warnings in consensus/tx_verify.cpp#22537 UndefinedBehaviorSanitizer: implicit-integer-sign-change consensus/tx_verify#22548 CheckQueue_Correct_Random data race#22588 Cirrus CI showed error in netaddress.cpp file when checking PR#22592 LeakSanitizer detects memory leak if CDBWrapper ctor fails#22925 test: Add missing suppression signed-integer-overflow:addrman.cpp#23121 [policy] check ancestor feerate in RBF, remove BIP125 Rule2#23160 test_bitcoin-qt error: "Unable to init server: Could not connect: Connection refused"#23248 Bitcoin Core crashes under clang-13 libc++ with "Bad system call (core dumped)"#23321 bitcoind segfault's while loading tr descriptor on regtest v22.0#23815 wallet: watchonly support for Miniscript descriptors#24290 segfault when compiled with depends DEBUG=1 and libc++#24340 util: Add missing unlinkat to syscall sandbox#24426 test: Fix intermittent Tsan issue#24819 data race in SimpleRoundTripTest logging for macOS#25077 Fix chain tip data race and corrupt rest response#25146 Starting with an unsupported wallet configured leads to a segfault (master only?)#25283 Ubuntu 20.04 Server - Build Error#25323 miniscript fuzzer failing after qa-assets update#25365 ThreadSanitizer: data race on vptr (ctor/dtor vs virtual call) in BaseIndex#25632 SUMMARY: ThreadSanitizer: SEGV src/index/base.cpp:388:9 in BaseIndex::SetBestBlockIndex(CBlockIndex const*)::$_1::operator()() const#25692 psbt.h:896:51: runtime error: unsigned integer overflow: 0 - 1 cannot be represented in type 'unsigned long'#25824 UndefinedBehaviorSanitizer: stack-overflow in miniscript (descriptor_parse)#25857 IBD core dumped during recursive call to CCoinsViewCache::FetchCoin (while connecting best chain tip)#26068 Segmentation fault in the scheduler thread when an index fails to commit to the db#26274 bitcoind dumps core when deriveaddresses is called with index 2147483647 (2^31-1)#26477 validation: fix broken maxtipage comparison#27222 test: use-of-uninitialized-value in sqlite3Strlen30#27235 Avoid integer overflow in CheckDiskSpace#27354 wallet: Data race in GetOrCreateLegacyScriptPubKeyMan vs IsMine#27355 index: ThreadSanitizer: data race on vptr #27360 ci: use LLVM/clang-16 in native_asan job#27492 ci: failure in Docker build step#27582 TSAN: lock-order-inversion (potential deadlock) in ZapSelectTx test#27913 rpc: signed-integer-overflow in analyzepsbt["estimated_feerate"]#27922 ci: fix llvm-symbolizer in MSAN jobs#27924 fuzz: banman, Assertion `banmap == banmap_read' failed#28570 fuzz: msan fuzz CI currently broken on x86_64#28665 'std::out_of_range' crash in I2P fuzz test#28695 net: Sanity check private keys received from SAM proxy#28761 Undefined behavior in AutoFile::write (gcc only)#28882 fuzz: Delete wallet_notifications#28917 fuzz, parse_iso8601: attempt to dereference an end-of-stream istreambuf_iterator#28918 fuzz, coinselection: Assertion 'result_bnb->GetChange(coin_params.m_cost_of_change, CAmount{0}) == 0' failed#28966 test: Add missing CBlockPolicyEstimator::processBlockTx suppression#28969 fuzz: Avoid signed-integer-overflow in wallet_notifications fuzz target#29153 new crash in v26.0#29178 ubsan: misaligned-pointer-use in crc32c/src/crc32c_arm64.cc#29297 RBF: Require unconfirmed inputs to come from a single conflicting transaction#29767 ThreadSanitizer: data race src/flatfile.cpp:47:13 in FlatFileSeq::Open(FlatFilePos const&, bool)#29908 test: SegFault in `ismine_tests` on SunOS / illumos#29949 Calling `walletprocesspsbt` to sign multisig containing `OP_GREATERTHANOREQUAL` op_code#30057 ci: msan use-of-uninitialized-value when -jobs=1 (or higher)#30284 Mini miner `AncestorFeerateComparator` Signed Integer Overflow#30402 Illegal Instruction in `CoinStatsIndex::CustomAppend`#30450 scriptPubKey no address#30514 implicit-integer-sign-change in ActivateSnapshot#30760 ci: fuzz_msan failed with ==4201==WARNING: MemorySanitizer: use-of-uninitialized-value #0 0x55f0c9bdeffb in SetArgs#31203 fuzz: fix `implicit-integer-sign-change` in wallet_create_transaction#31234 fuzz: connman target: terminate called after throwing an instance of 'std::bad_alloc'#31344 ci: how to run native arm job on Apple silicon?#31455 multiprocess: build failure on Alpine with depends & `DEBUG=1`#31591 Fuzz: Runtime errors when running fuzz tests on MacOs#31618 multiprocess: `ipc_tests` fail on *BSD#31694 Inconsistent hardened derivation marker in `listdescriptors` output#31921 intermittent ipc_tests (Timeout)#32089 Failure to run Fuzz tests when running with corpus#32111 wallet: migratewallet crashes "Assertion `m_wallet_flags == 0' failed"#32112 wallet: migratewallet crashes "Assertion `legacy_spkm' failed"#32173 validation: `CheckBlockIndex` crashes during block reconsideration#32495 test: consider Clang `type` sanitizer#32780 lsan: add more Qt suppressions#32957 SegFault in QSortFilterProxyModelPrivate::build_source_to_proxy_mapping#32995 fuzz: AddressSanitizer: odr-violation typeinfo name for CCoinsViewBacked#33063 util: Revert "common: Close non-std fds before exec in RunCommandJSON"#33097 fuzz: `txgraph`: Assertion `cmp == 0' failed#33150 intermittent TSAN failure in lockmanager_tests::blockmanager_readblock_hash_mismatch#33245 integer sanitizer warning, when running with -natpmp=1 enabled#33277 intermittent Segmentation fault in mptest IPC path (callFnAsyncParams)#33345 ci: derived LLVM version too new#33490 .#33548 `test_bitcoin-qt`: segfault under LTO (CMAKE_INTERPROCEDURAL_OPTIMIZATION=ON)#33615 ASAN use-after-free in `m_reconnections`#33949 ubsan: add another suppression for InsecureRandomContext#33964 Startup crash on macOS with GCC 15.2: `std::source_location::file_name()` is `nullptr`#34014 mptest hangs, when run in a loop#34109 refactor: Use uint64_t over size_t for serialize corruption check in fees.dat#34110 scriptpubkeyman fuzz target creates Base58 too large; Fails on 32-bit (armhf, ...)#34420 consensus: disable min difficulty blocks on testnet4 after height 151,200#34645 oss-fuzz: coins_view_overlay: ASSERT: m_dirty_count == 0#34655 fuzz: keep `coins_view` fuzzers within caller contracts#34711 src/ipc/libmultiprocess/src/mp/proxy.cpp:416:44: runtime error: member access within null pointer of type 'mp::Waiter'#34732 i386 segv in #0 0xf7a49ce0 in kj::operator*(kj::_::Stringifier, kj::Exception const&) (/lib/i386-linux-gnu/libkj-1.1.0.so+0x38ce0)#34734 test: Fix shutdown vptr race in BlockFilterIndexSync bench#34756 ipc: AddressSanitizer: SEGV nptl/pthread_mutex_lock.c:80:23 in __pthread_mutex_lock#34777 ipc: AddressSanitizer: heap-use-after-free in `capnp::CallContext<ipc::capnp::messages::BlockTemplate::GetBlockParams, ipc::capnp::messages::BlockTemplate::GetBlockResults>::getParams()`#34782 mptest: mp::CancelMonitor: AddressSanitizer: stack-use-after-return#34881 GCC + ASan debug builds: runtime SEGV in `sha256_sse4::Transform` on CPUs without SHA-NI#34988 rpc: fix initialization-order-fiasco by lazy-init of decodepsbt_inputs#35081 consensus: soft fork on testnet4 that fixes the min difficulty blocks exploit#35104 release: Checksum mismatch in `guix-codesign` log

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-05-02 15:16 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me