Bitcoin Forum
May 09, 2024, 09:32:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 »
1  Bitcoin / Development & Technical Discussion / MOVED: AioTx - simple python crypto library on: May 05, 2024, 08:28:33 PM
This topic has been moved to Project Development.

https://bitcointalk.org/index.php?topic=5495274.0
2  Bitcoin / Bitcoin Technical Support / MOVED: Phemex on: May 02, 2024, 08:06:49 PM
This topic has been moved to Exchanges.

https://bitcointalk.org/index.php?topic=5495084.0
3  Bitcoin / Development & Technical Discussion / MOVED: what happend !! on: May 01, 2024, 03:49:53 PM
This topic has been moved to Bitcoin Discussion.

https://bitcointalk.org/index.php?topic=5494756.0
4  Bitcoin / Bitcoin Technical Support / MOVED: EMC2 unable to withdraw from komodo wallet on: April 26, 2024, 10:35:15 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5494379.0
5  Bitcoin / Development & Technical Discussion / MOVED: Application Programming Interface question- Is this possible or BS on: April 25, 2024, 06:45:24 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5494113.0
6  Bitcoin / Bitcoin Discussion / Bitcoin Core 27.0 Released on: April 20, 2024, 02:12:50 PM
27.0 Release Notes

Bitcoin Core version 27.0 is now available from:

https://bitcoincore.org/bin/bitcoin-core-27.0/

This release includes new features, various bug fixes and performance
improvements, as well as updated translations.

Please report bugs using the issue tracker at GitHub:

https://github.com/bitcoin/bitcoin/issues

To receive security and update notifications, please subscribe to:

https://bitcoincore.org/en/list/announcements/join/

How to Upgrade

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes in some cases), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on macOS)
or bitcoind/bitcoin-qt (on Linux).

Upgrading directly from a version of Bitcoin Core that has reached its EOL is
possible, but it might take some time if the data directory needs to be migrated. Old
wallet versions of Bitcoin Core are generally supported.

Compatibility

Bitcoin Core is supported and extensively tested on operating systems
using the Linux Kernel 3.17+, macOS 11.0+, and Windows 7 and newer. Bitcoin
Core should also work on most other Unix-like systems but is not as
frequently tested on them. It is not recommended to use Bitcoin Core on
unsupported systems.

Notable changes

libbitcoinconsensus
  • libbitcoinconsensus is deprecated and will be removed for v28. This library has
    existed for nearly 10 years with very little known uptake or impact. It has
    become a maintenance burden.

    The underlying functionality does not change between versions, so any users of
    the library can continue to use the final release indefinitely, with the
    understanding that Taproot is its final consensus update.

    In the future, libbitcoinkernel will provide a much more useful API that is
    aware of the UTXO set, and therefore be able to fully validate transactions and
    blocks. (#29189)

mempool.dat compatibility
  • The mempool.dat file created by -persistmempool or the savemempool RPC will
    be written in a new format. This new format includes the XOR'ing of transaction
    contents to mitigate issues where external programs (such as anti-virus) attempt
    to interpret and potentially modify the file.

    This new format can not be read by previous software releases. To allow for a
    downgrade, a temporary setting -persistmempoolv1 has been added to fall back
    to the legacy format. (#28207)

P2P and network changes
  • BIP324 v2 transport is now enabled by default. It remains possible to disable v2
    by running with -v2transport=0. (#29347)
  • Manual connection options (-connect, -addnode and -seednode) will
    now follow -v2transport to connect with v2 by default. They will retry with
    v1 on failure. (#29058)
  • Network-adjusted time has been removed from consensus code. It is replaced
    with (unadjusted) system time. The warning for a large median time offset
    (70 minutes or more) is kept. This removes the implicit security assumption of
    requiring an honest majority of outbound peers, and increases the importance
    of the node operator ensuring their system time is (and stays) correct to not
    fall out of consensus with the network. (#28956)

Mempool Policy Changes
  • Opt-in Topologically Restricted Until Confirmation (TRUC) Transactions policy
    (aka v3 transaction policy) is available for use on test networks when
    -acceptnonstdtxn=1 is set. By setting the transaction version number to 3, TRUC transactions
    request the application of limits on spending of their unconfirmed outputs. These
    restrictions simplify the assessment of incentive compatibility of accepting or
    replacing TRUC transactions, thus ensuring any replacements are more profitable for
    the node and making fee-bumping more reliable. TRUC transactions are currently
    nonstandard and can only be used on test networks where the standardness rules are
    relaxed or disabled (e.g. with -acceptnonstdtxn=1). (#28948)

External Signing
  • Support for external signing on Windows has been disabled. It will be re-enabled
    once the underlying dependency (Boost Process), has been replaced with a different
    library. (#28967)

Updated RPCs
  • The addnode RPC now follows the -v2transport option (now on by default, see above) for making connections.
    It remains possible to specify the transport type manually with the v2transport argument of addnode. (#29239)

Build System
  • A C++20 capable compiler is now required to build Bitcoin Core. (#28349)
  • MacOS releases are configured to use the hardened runtime libraries (#29127)

Wallet
  • The CoinGrinder coin selection algorithm has been introduced to mitigate unnecessary
    large input sets and lower transaction costs at high feerates. CoinGrinder
    searches for the input set with minimal weight. Solutions found by
    CoinGrinder will produce a change output. CoinGrinder is only active at
    elevated feerates (default: 30+ sat/vB, based on -consolidatefeerate×3). (#27877)
  • The Branch And Bound coin selection algorithm will be disabled when the subtract fee
    from outputs feature is used. (#28994)
  • If the birth time of a descriptor is detected to be later than the first transaction
    involving that descriptor, the birth time will be reset to the earlier time. (#28920)

Low-level changes

Pruning
  • When pruning during initial block download, more blocks will be pruned at each
    flush in order to speed up the syncing of such nodes. (#20827)

Init
  • Various fixes to prevent issues where subsequent instances of Bitcoin Core would
    result in deletion of files in use by an existing instance. (#28784, #28946)
  • Improved handling of empty settings.json files. (#29144)

Credits

Thanks to everyone who directly contributed to this release:
  • 22388o⚡️
  • Aaron Clauson
  • Amiti Uttarwar
  • Andrew Toth
  • Anthony Towns
  • Antoine Poinsot
  • Ava Chow
  • Brandon Odiwuor
  • brunoerg
  • Chris Stewart
  • Cory Fields
  • dergoegge
  • djschnei21
  • Fabian Jahr
  • fanquake
  • furszy
  • Gloria Zhao
  • Greg Sanders
  • Hennadii Stepanov
  • Hernan Marino
  • iamcarlos94
  • ismaelsadeeq
  • Jameson Lopp
  • Jesse Barton
  • John Moffett
  • Jon Atack
  • josibake
  • jrakibi
  • Justin Dhillon
  • Kashif Smith
  • kevkevin
  • Kristaps Kaupe
  • L0la L33tz
  • Luke Dashjr
  • Lőrinc
  • marco
  • MarcoFalke
  • Mark Friedenbach
  • Marnix
  • Martin Leitner-Ankerl
  • Martin Zumsande
  • Max Edwards
  • Murch
  • muxator
  • naiyoma
  • Nikodemas Tuckus
  • ns-xvrn
  • pablomartin4btc
  • Peter Todd
  • Pieter Wuille
  • Richard Myers
  • Roman Zeyde
  • Russell Yanofsky
  • Ryan Ofsky
  • Sebastian Falbesoner
  • Sergi Delgado Segura
  • Sjors Provoost
  • stickies-v
  • stratospher
  • Supachai Kheawjuy
  • TheCharlatan
  • UdjinM6
  • Vasil Dimov
  • w0xlt
  • willcl-ark

As well as to everyone that helped with translations on
Transifex.
7  Bitcoin / Bitcoin Discussion / Bitcoin Core 26.1 Released on: April 20, 2024, 02:12:04 PM
26.1 Release Notes

Bitcoin Core version 26.1 is now available from:

https://bitcoincore.org/bin/bitcoin-core-26.1/

This release includes various bug fixes and performance
improvements, as well as updated translations.

Please report bugs using the issue tracker at GitHub:

https://github.com/bitcoin/bitcoin/issues

To receive security and update notifications, please subscribe to:

https://bitcoincore.org/en/list/announcements/join/

How to Upgrade

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes in some cases), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on macOS)
or bitcoind/bitcoin-qt (on Linux).

Upgrading directly from a version of Bitcoin Core that has reached its EOL is
possible, but it might take some time if the data directory needs to be migrated. Old
wallet versions of Bitcoin Core are generally supported.

Compatibility

Bitcoin Core is supported and extensively tested on operating systems
using the Linux kernel, macOS 11.0+, and Windows 7 and newer.  Bitcoin
Core should also work on most other Unix-like systems but is not as
frequently tested on them.  It is not recommended to use Bitcoin Core on
unsupported systems.

Notable changes

Wallet
  • #28994 wallet: skip BnB when SFFO is enabled
  • #28920 wallet: birth time update during tx scanning
  • #29176 wallet: Fix use-after-free in WalletBatch::EraseRecords
  • #29510 wallet: getrawchangeaddress and getnewaddress failures should not affect keypools for descriptor wallets

RPC
  • #29003 rpc: fix getrawtransaction segfault
  • #28784 rpc: keep .cookie file if it was not generated

Logs
  • #29227 log mempool loading progress

P2P and network changes
  • #29200 net: create I2P sessions using both ECIES-X25519 and ElGamal encryption
  • #29412 p2p: Don't process mutated blocks
  • #29524 p2p: Don't consider blocks mutated if they don't connect to known prev block

Build
  • #29127 Use hardened runtime on macOS release builds.
  • #29195 build: Fix -Xclang -internal-isystem option

CI
  • #28992 ci: Use Ubuntu 24.04 Noble for asan,tsan,tidy,fuzz
  • #29080 ci: Set HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK to avoid unrelated failures
  • #29610 ci: Fix "macOS native" job

Miscellaneous
  • #28391 refactor: Simplify CTxMempool/BlockAssembler fields, remove some external mapTx access
  • #29179 test: wallet rescan with reorged parent + IsFromMe child in mempool
  • #28791 snapshots: don't core dump when running -checkblockindex after loadtxoutset
  • #29357 test: Drop x modifier in fsbridge::fopen call for MinGW builds
  • #29529 fuzz: restrict fopencookie usage to Linux & FreeBSD

Credits

Thanks to everyone who directly contributed to this release:
  • dergoegge
  • fanquake
  • furszy
  • glozow
  • Greg Sanders
  • Hennadii Stepanov
  • Jon Atack
  • MarcoFalke
  • Mark Friedenbach
  • Martin Zumsande
  • Murch
  • Roman Zeyde
  • stickies-v
  • UdjinM6

As well as to everyone that helped with translations on
Transifex.
8  Bitcoin / Bitcoin Discussion / Bitcoin Core 25.2 Released on: April 20, 2024, 02:11:27 PM

25.2 Release Notes

Bitcoin Core version 25.2 is now available from:

https://bitcoincore.org/bin/bitcoin-core-25.2

This release includes various bug fixes and performance
improvements, as well as updated translations.

Please report bugs using the issue tracker at GitHub:

https://github.com/bitcoin/bitcoin/issues

To receive security and update notifications, please subscribe to:

https://bitcoincore.org/en/list/announcements/join/

How to Upgrade

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes in some cases), then run the
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on macOS)
or bitcoind/bitcoin-qt (on Linux).

Upgrading directly from a version of Bitcoin Core that has reached its EOL is
possible, but it might take some time if the data directory needs to be migrated. Old
wallet versions of Bitcoin Core are generally supported.

Compatibility

Bitcoin Core is supported and extensively tested on operating systems
using the Linux kernel, macOS 10.15+, and Windows 7 and newer.  Bitcoin
Core should also work on most other Unix-like systems but is not as
frequently tested on them.  It is not recommended to use Bitcoin Core on
unsupported systems.

Notable changes

Gui
  • gui#774 Fix crash on selecting "Mask values" in transaction view

RPC
  • #29003 rpc: fix getrawtransaction segfault

Wallet
  • #29176 wallet: Fix use-after-free in WalletBatch::EraseRecords
  • #29510 wallet: getrawchangeaddress and getnewaddress failures should not affect keypools for descriptor wallets

P2P and network changes
  • #29412 p2p: Don't process mutated blocks
  • #29524 p2p: Don't consider blocks mutated if they don't connect to known prev block

Credits

Thanks to everyone who directly contributed to this release:
  • Martin Zumsande
  • Sebastian Falbesoner
  • MarcoFalke
  • UdjinM6
  • dergoegge
  • Greg Sanders

As well as to everyone that helped with translations on
Transifex.
9  Bitcoin / Development & Technical Discussion / MOVED: PoW and PoS on: April 18, 2024, 02:45:22 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5492788.0
10  Bitcoin / Development & Technical Discussion / MOVED: Crypto help Ethereum & Btc on: April 16, 2024, 02:40:52 PM
This topic has been moved to Services.

https://bitcointalk.org/index.php?topic=5493051.0
11  Bitcoin / Bitcoin Technical Support / MOVED: can bitcoin core (testnet) automatically point miners to a specific address on: April 16, 2024, 02:39:23 PM
This topic has been moved to Mining support.

https://bitcointalk.org/index.php?topic=5492988.0
12  Bitcoin / Development & Technical Discussion / MOVED: Unable to get SepETH testnet from DevConnect Sepolia Faucet on: April 15, 2024, 04:09:20 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5492885.0
13  Bitcoin / Development & Technical Discussion / MOVED: Comparing Inheritance Services on: April 14, 2024, 10:17:23 PM
This topic has been moved to Bitcoin Discussion.

https://bitcointalk.org/index.php?topic=5492618.0
14  Bitcoin / Bitcoin Technical Support / MOVED: Wallet audit on: April 14, 2024, 10:16:57 PM
This topic has been moved to Legal.

https://bitcointalk.org/index.php?topic=5492018.0
15  Bitcoin / Development & Technical Discussion / MOVED: More than 10 phishing wallets detected on the Snap Store, be careful on: April 03, 2024, 04:18:33 PM
This topic has been moved to Wallet software.

https://bitcointalk.org/index.php?topic=5491309.0
16  Bitcoin / Development & Technical Discussion / MOVED: Security tips for making encrypted backups of your seedphrase. on: March 30, 2024, 04:20:05 AM
This topic has been moved to Bitcoin Discussion.

https://bitcointalk.org/index.php?topic=5490701.0
17  Bitcoin / Bitcoin Technical Support / MOVED: what would I do, if I paid for coin and the seller refused to release it. on: March 26, 2024, 04:10:17 PM
This topic has been moved to Beginners & Help.

https://bitcointalk.org/index.php?topic=5490412.0
18  Bitcoin / Development & Technical Discussion / MOVED: xyro.io on: March 23, 2024, 03:08:20 AM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5489971.0
19  Bitcoin / Development & Technical Discussion / MOVED: "Connect Wallet" must go on: March 21, 2024, 03:13:33 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5489595.0
20  Bitcoin / Development & Technical Discussion / MOVED: Kaspa POW Chain Setup Issue: Miner Reports “Not Synced” Despite Genesis Block Pr on: March 19, 2024, 05:12:53 PM
This topic has been moved to Altcoin Discussion.

https://bitcointalk.org/index.php?topic=5489460.0
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!