Bitcoin Forum

Bitcoin => Bitcoin Discussion => Topic started by: Parazyd on December 28, 2014, 11:26:52 AM



Title: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 28, 2014, 11:26:52 AM
Bitcoin Core version 0.10.0 is now available from:

https://bitcoin.org/bin/0.10.0/

This is a new major version release, bringing both new features and bug fixes.

Please report bugs using the issue tracker at github:

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

----------------------
https://github.com/bitcoin/bitcoin/blob/0.10/doc/release-notes.md
Quote
Upgrading and downgrading
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 for older versions), then run the installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).

If you are upgrading from version 0.7.2 or earlier, the first time you run 0.10.0 your blockchain files will be re-indexed, which will take anywhere from 30 minutes to several hours, depending on the speed of your machine.
Downgrading warning

Because release 0.10.0 makes use of headers-first synchronization and parallel block download (see further), the block files and databases are not backwards-compatible with older versions of Bitcoin Core:

    Blocks will be stored on disk out of order (in the order they are received, really), which makes it incompatible with some tools or other programs. Reindexing using earlier versions will also not work anymore as a result of this.

    The block index database will now hold headers for which no block is stored on disk, which earlier versions won't support.

If you want to be able to downgrade smoothly, make a backup of your entire data directory. Without this your node will need start syncing (or importing from bootstrap.dat) anew afterwards.

This does not affect wallet forward or backward compatibility.
Notable changes
Faster synchronization

Bitcoin Core now uses 'headers-first synchronization'. This means that we first ask peers for block headers (a total of 27 megabytes, as of December 2014) and validate those. In a second stage, when the headers have been discovered, we download the blocks. However, as we already know about the whole chain in advance, the blocks can be downloaded in parallel from all available peers.

In practice, this means a much faster and more robust synchronization. On recent hardware with a decent network link, it can be as little as 3 hours for an initial full synchronization. You may notice a slower progress in the very first few minutes, when headers are still being fetched and verified, but it should gain speed afterwards.

A few RPCs were added/updated as a result of this:

    getblockchaininfo now returns the number of validated headers in addition to the number of validated blocks.
    getpeerinfo lists both the number of blocks and headers we know we have in common with each peer. While synchronizing, the heights of the blocks that we have requested from peers (but haven't received yet) are also listed as 'inflight'.
    A new RPC getchaintips lists all known branches of the block chain, including those we only have headers for.

Transaction fee changes

This release automatically estimates how high a transaction fee (or how high a priority) transactions require to be confirmed quickly. The default settings will create transactions that confirm quickly; see the new 'txconfirmtarget' setting to control the tradeoff between fees and confirmation times.

Prior releases used hard-coded fees (and priorities), and would sometimes create transactions that took a very long time to confirm.

Statistics used to estimate fees and priorities are saved in the data directory in the fee_estimates.dat file just before program shutdown, and are read in at startup.

New command line options for fee estimation:

    -txconfirmtarget=n : create transactions that have enough fees (or priority) so they are likely to confirm within n blocks (default: 1). This setting is over-ridden by the -paytxfee option.

New RPC commands for fee estimation:

    estimatefee nblocks : Returns approximate fee-per-1,000-bytes needed for a transaction to be confirmed within nblocks. Returns -1 if not enough transactions have been observed to compute a good estimate.
    estimatepriority nblocks : Returns approximate priority needed for a zero-fee transaction to confirm within nblocks. Returns -1 if not enough free transactions have been observed to compute a good estimate.

RPC access control changes

Subnet matching for the purpose of access control is now done by matching the binary network address, instead of with string wildcard matching. For the user this means that -rpcallowip takes a subnet specification, which can be

    a single IP address (e.g. 1.2.3.4 or fe80::0012:3456:789a:bcde)
    a network/CIDR (e.g. 1.2.3.0/24 or fe80::0000/64)
    a network/netmask (e.g. 1.2.3.4/255.255.255.0 or fe80::0012:3456:789a:bcde/ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff)

An arbitrary number of -rpcallow arguments can be given. An incoming connection will be accepted if its origin address matches one of them.

REST interface


A new HTTP API is exposed when running with the -rest flag, which allows unauthenticated access to public node data.

It is served on the same port as RPC, but does not need a password, and uses plain HTTP instead of JSON-RPC.

Assuming a local RPC server running on port 8332, it is possible to request:

    Blocks: http://localhost:8332/rest/block/HASH.EXT
    Blocks without transactions: http://localhost:8332/block/notxdetails/HASH.EXT
    Transactions (requires -txindex): http://localhost:8332/tx/HASH.EXT

In every case, EXT can be bin (for raw binary data), hex (for hex-encoded binary) or json.

For more details, see the doc/REST-interface.md document in the repository.
RPC Server "Warm-Up" Mode

The RPC server is started earlier now, before most of the expensive intialisations like loading the block index. It is available now almost immediately after starting the process. However, until all initialisations are done, it always returns an immediate error with code -28 to all calls.

This new behaviour can be useful for clients to know that a server is already started and will be available soon (for instance, so that they do not have to start it themselves).
Improved signing security

For 0.10 the security of signing against unusual attacks has been improved by making the signatures constant time and deterministic.

This change is a result of switching signing to use libsecp256k1 instead of OpenSSL. Libsecp256k1 is a cryptographic library optimized for the curve Bitcoin uses which was created by Bitcoin Core developer Pieter Wuille.

There exist attacks[1] against most ECC implementations where an attacker on shared virtual machine hardware could extract a private key if they could cause a target to sign using the same key hundreds of times. While using shared hosts and reusing keys are inadvisable for other reasons, it's a better practice to avoid the exposure.

OpenSSL has code in their source repository for derandomization and reduction in timing leaks, and we've eagerly wanted to use it for a long time but this functionality has still not made its way into a released version of OpenSSL. Libsecp256k1 achieves significantly stronger protection: As far as we're aware this is the only deployed implementation of constant time signing for the curve Bitcoin uses and we have reason to believe that libsecp256k1 is better tested and more thoroughly reviewed than the implementation in OpenSSL.

[1] https://eprint.iacr.org/2014/161.pdf
Watch-only addresses in the wallet

The wallet can now track transactions to addresses (or scripts) for which you do not have the private keys.

This can be used to track payments without needing the private keys online on a possibly vulnerable system. In addition, it can help for (manual) construction of multisig transactions where you are only one of the signers.

One new RPC, importaddress, is added which functions similarly to importprivkey, but instead takes an address or script (in hexadecimal) as argument. After using it, outputs credited to this address or script are considered to be yours.

The following RPCs have optional support for watch-only addresses: getbalance, listreceivedbyaddress, listreceivedbyaccount, listtransactions, listaccounts, listsinceblock, gettransaction. See the RPC documentation for those methods for more information.

Compared to using getrawtransaction, this mechanism does not require -txindex, scales better, integrates better with the wallet, and is compatible with future block chain pruning functionality. It does mean the address needs to added to the wallet before the payment, though.
Consensus library

Starting from 0.10.0, the Bitcoin Core distribution includes a consensus library.

The purpose of this library is to make the verification functionality that is critical to Bitcoin's consensus available to other applications, e.g. to language bindings such as python_bitcoinlib or alternative node implementations.

This library is called libbitcoinconsensus.so (or, .dll for Windows). Its interface is defined in the C header bitcoinconsensus.h.

In its initial version the API includes two functions:

    bitcoinconsensus_verify_script verifies a script. It returns whether the indicated input of the provided serialized transaction correctly spends the passed scriptPubKey under additional constraints indicated by flags
    bitcoinconsensus_version returns the API version, currently at an experimental 0

The functionality is planned to be extended to e.g. UTXO management in upcoming releases, but the interface for existing methods should remain stable.
Standard script rules relaxed for P2SH addresses

The IsStandard() rules have been almost completely removed for P2SH redemption scripts, allowing applications to make use of any valid script type, such as "n-of-m OR y", hash-locked oracle addresses, etc. While the Bitcoin protocol has always supported these types of script, actually using them on mainnet has been previously inconvenient as standard Bitcoin Core nodes wouldn't relay them to miners, nor would most miners include them in blocks they mined.
bitcoin-tx

It has been observed that many of the RPC functions offered by bitcoind are "pure functions", and operate independently of the bitcoind wallet. This included many of the RPC "raw transaction" API functions, such as createrawtransaction.

bitcoin-tx is a newly introduced command line utility designed to enable easy manipulation of bitcoin transactions. A summary of its operation may be obtained via "bitcoin-tx --help" Transactions may be created or signed in a manner similar to the RPC raw tx API. Transactions may be updated, deleting inputs or outputs, or appending new inputs and outputs. Custom scripts may be easily composed using a simple text notation, borrowed from the bitcoin test suite.

This tool may be used for experimenting with new transaction types, signing multi-party transactions, and many other uses. Long term, the goal is to deprecate and remove "pure function" RPC API calls, as those do not require a server round-trip to execute.

Other utilities "bitcoin-key" and "bitcoin-script" have been proposed, making key and script operations easily accessible via command line.

Credits

Thanks to everyone who contributed to this release:

    21E14
    Adam Weiss
    Aitor Pazos
    Alexander Jeng
    Alex Morcos
    Alon Muroch
    Andreas Schildbach
    Andrew Poelstra
    Andy Alness
    Ashley Holman
    Benedict Chan
    Ben Holden-Crowther
    Bryan Bishop
    BtcDrak
    Christian von Roques
    Clinton Christian
    Cory Fields
    Cozz Lovan
    daniel
    Daniel Kraft
    David Hill
    Derek701
    dexX7
    dllud
    Dominyk Tiller
    Doug
    elichai
    elkingtowa
    ENikS
    Eric Shaw
    Federico Bond
    Francis GASCHET
    Gavin Andresen
    Giuseppe Mazzotta
    Glenn Willen
    Gregory Maxwell
    gubatron
    HarryWu
    himynameismartin
    Huang Le
    Ian Carroll
    imharrywu
    Jameson Lopp
    Janusz Lenar
    JaSK
    Jeff Garzik
    JL2035
    Johnathan Corgan
    Jonas Schnelli
    jtimon
    Julian Haight
    Kamil Domanski
    kazcw
    kevin
    kiwigb
    Kosta Zertsekel
    LongShao007
    Luke Dashjr
    Mark Friedenbach
    Mathy Vanvoorden
    Matt Corallo
    Matthew Bogosian
    Micha
    Michael Ford
    Mike Hearn
    mrbandrews
    mruddy
    ntrgn
    Otto Allmendinger
    paveljanik
    Pavel Vasin
    Peter Todd
    phantomcircuit
    Philip Kaufmann
    Pieter Wuille
    pryds
    randy-waterhouse
    R E Broadley
    Rose Toomey
    Ross Nicoll
    Roy Badami
    Ruben Dario Ponticelli
    Rune K. Svendsen
    Ryan X. Charles
    Saivann
    sandakersmann
    SergioDemianLerner
    shshshsh
    sinetek
    Stuart Cardall
    Suhas Daftuar
    Tawanda Kembo
    Teran McKinney
    tm314159
    Tom Harding
    Trevin Hofmann
    Whit J
    Wladimir J. van der Laan
    Yoichi Hirai
    Zak Wilcox

As well as everyone that helped translating on Transifex.

View full log at: https://github.com/bitcoin/bitcoin/blob/0.10/doc/release-notes.md


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: MadGamer on December 28, 2014, 11:30:28 AM
Awesome ! ;D
Thank you very much to all developpers  ::) Going to read the changelog if there is some interessting new features & fixes ;) peace


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Parazyd on December 28, 2014, 11:32:04 AM
It's full of great new features. You'll enjoy it :)

Loving the fact you can now have watch-only addresses, making stuff a lot more secure.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: MadGamer on December 28, 2014, 11:33:43 AM
It's full of great new features. You'll enjoy it :)

Loving the fact you can now have watch-only addresses, making stuff a lot more secure.

Yea really awesome , just read that
"The wallet can now track transactions to addresses (or scripts) for which you do not have the private keys"


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: cakir on December 28, 2014, 11:34:41 AM
I'm installing it now! Thanks for hardworking guyz!


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Joca97 on December 28, 2014, 11:42:51 AM
do we nneed to install it or it will update by its self?


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: MadGamer on December 28, 2014, 11:44:38 AM
do we nneed to install it or it will update by its self?

It written on the Github page mate :

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

If you are upgrading from version 0.7.2 or earlier, the first time you run 0.10.0 your blockchain files will be re-indexed, which will take anywhere from 30 minutes to several hours, depending on the speed of your machine."


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: cakir on December 28, 2014, 11:45:18 AM
do we nneed to install it or it will update by its self?

There's no auto updater inside the core wallet, You've to manually upgrade it.
Also this wallet is a test version. It's not fully released yet. Check it's name; "release canditate".


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: TechnoBibble on December 28, 2014, 12:03:38 PM
This is awesome thanks :)


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Meuh6879 on December 28, 2014, 12:18:14 PM
WinXP SP3 (32bits + all KBs installed) : Crash.

http://imagizer.imageshack.us/a/img540/8728/o63I6t.jpg

DEBUG.LOG
Code:
2014-12-28 12:11:45 Bitcoin version v0.10.0rc1 (2014-12-23 20:14:37 +0100)
2014-12-28 12:11:45 Using OpenSSL version OpenSSL 1.0.1j 15 Oct 2014
2014-12-28 12:11:45 Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2014-12-28 12:11:45 Default data directory C:\Documents and Settings\PC\Application Data\Bitcoin
2014-12-28 12:11:45 Using data directory G:\block-bitcoin
2014-12-28 12:11:45 Using config file G:\block-bitcoin\bitcoin.conf
2014-12-28 12:11:45 Using at most 12 connections (2048 file descriptors available)
2014-12-28 12:11:45 Using 0 threads for script verification
2014-12-28 12:11:45

************************
EXCEPTION: N5boost16exception_detail10clone_implINS0_19error_info_injectorINS_6system12system_errorEEEEE      
Un argument non valide a été fourni      
G:\Bitcoin\bitcoin-qt.exe in Runaway exception      

2014-12-28 12:12:15 GUI: registerShutdownBlockReason: GetProcAddress for ShutdownBlockReasonCreate failed
2014-12-28 12:12:19 Shutdown: In progress...
2014-12-28 12:12:19 StopNode()
2014-12-28 12:12:19 Shutdown: done
2014-12-28 12:12:43 GUI: registerShutdownBlockReason: GetProcAddress for ShutdownBlockReasonCreate failed
2014-12-28 12:12:43



















2014-12-28 12:12:43 Bitcoin version v0.10.0rc1 (2014-12-23 20:14:37 +0100)
2014-12-28 12:12:43 Using OpenSSL version OpenSSL 1.0.1j 15 Oct 2014
2014-12-28 12:12:43 Using BerkeleyDB version Berkeley DB 4.8.30: (April  9, 2010)
2014-12-28 12:12:43 Default data directory C:\Documents and Settings\PC\Application Data\Bitcoin
2014-12-28 12:12:43 Using data directory G:\block-bitcoin
2014-12-28 12:12:43 Using config file G:\block-bitcoin\bitcoin.conf
2014-12-28 12:12:43 Using at most 12 connections (2048 file descriptors available)
2014-12-28 12:12:43 Using 0 threads for script verification
2014-12-28 12:12:43

************************
EXCEPTION: N5boost16exception_detail10clone_implINS0_19error_info_injectorINS_6system12system_errorEEEEE      
Un argument non valide a été fourni      
G:\Bitcoin\bitcoin-qt.exe in Runaway exception      

2014-12-28 12:13:20 GUI: registerShutdownBlockReason: GetProcAddress for ShutdownBlockReasonCreate failed
2014-12-28 12:13:20


Note : i use 0.9.1 because 0.9.2 and 0.9.3 crashs after some couple of hours (19-23 hours). I use RPC server, solo-mining and P2Pool mining.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Bitcoinpro on December 28, 2014, 01:08:42 PM
It's full of great new features. You'll enjoy it :)

Loving the fact you can now have watch-only addresses, making stuff a lot more secure.

watch-only addresses

http://www.reddit.com/r/Bitcoin/comments/2a222h/support_for_watchonly_addresses_merged_into/

Wallet can be used w/out private keys (key monitoring). This enables certain multi-node monitoring designs as well.

If you have a cold storage wallet and you are paranoid about your balance, you can just import the public (not private) keys into your watch-only wallet. You can then easily check your balance on that wallet without running the risk of having your private keys on an Internet-connected machine.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: BlindMayorBitcorn on December 28, 2014, 01:13:05 PM
It's full of great new features. You'll enjoy it :)

Loving the fact you can now have watch-only addresses, making stuff a lot more secure.

watch-only addresses

http://www.reddit.com/r/Bitcoin/comments/2a222h/support_for_watchonly_addresses_merged_into/

Wallet can be used w/out private keys (key monitoring). This enables certain multi-node monitoring designs as well.

If you have a cold storage wallet and you are paranoid about your balance, you can just import the public (not private) keys into your watch-only wallet. You can then easily check your balance on that wallet without running the risk of having your private keys on an Internet-connected machine.

This is very cool news. Thanks for sharing OP


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: wadili89 on December 28, 2014, 01:18:05 PM
It's full of great new features. You'll enjoy it :)

Loving the fact you can now have watch-only addresses, making stuff a lot more secure.

Just saw that, really cool.

I will request a portable version of the wallet. There used to be earlier but have stopped now.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Q7 on December 28, 2014, 01:24:56 PM
A step forward on the transaction fee. At least now with higher fee paid for the transaction this will be put on higher priority for confirmation.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Flashman on December 28, 2014, 01:41:03 PM
You can then easily check your balance on that wallet without running the risk of having your private keys on an Internet-connected machine.

No you can't do that, Worlds Greatest Bitcoin Expert Mark Karpeles says checking your cold wallet balance makes it less cold :D


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: razibuzouzou on December 28, 2014, 01:49:27 PM
Note that the final 0.10.0 isn't available yet.
Current status is Release Candidate 1.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: viboracecata on December 28, 2014, 01:55:34 PM
Note that the final 0.10.0 isn't available yet.
Current status is Release Candidate 1.
Can't wait for the final, let's install and feel it


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: knight22 on December 28, 2014, 02:03:15 PM
Wow great! Thanks everyone  :)


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: BadAss.Sx on December 28, 2014, 02:06:34 PM
Gonna wait for the final release


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: QuestionAuthority on December 28, 2014, 02:06:43 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Parazyd on December 28, 2014, 02:07:33 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

It's still a release candidate.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: BadAss.Sx on December 28, 2014, 02:08:39 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

Because it is a RC version i guess


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: QuestionAuthority on December 28, 2014, 02:11:10 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

It's still a release candidate.

I see, thanks.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: chek2fire on December 28, 2014, 02:19:01 PM
I have isntall it in my home node and i think is more stable than the previous version and has less memory usage. I say that because i try to setup a node with a cubieboard and with previous version i had crashes in a minute. Now it runs for hours.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: 1Referee on December 28, 2014, 02:21:47 PM
More than decent update, big thanks to the devs.

Will download and install it later today.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: manselr on December 28, 2014, 05:45:45 PM
Im on a fresh install and that means I need to move my wallet and blockchain to the next. Did any of you have problems importing blockchain from the previous version? Everytime I try to import my blockchain to no have to download it all again, it gets somehow corrupted and i need to wait for 2 days to download from scratch again.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: julian071 on December 28, 2014, 05:59:22 PM
It starts much faster then 0.9.3 and it shows the progress of indexing the blocks on startup. Nice =)


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Minnlo on December 28, 2014, 06:11:58 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

It's still a release candidate.

I see, thanks.

The forum news now rotates between "Help test the latest unstable version of Bitcoin Core: 0.10.0rc1." and "Latest stable version of Bitcoin Core: 0.9.3".


Thanks for all the core devs.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: rz20 on December 28, 2014, 06:13:22 PM
I have updated my node and It is already synced. It uses less memory than the previous version and it start faster.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Trevon on December 28, 2014, 07:12:31 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

They just changed it to "Help test the latest unstable version of Bitcoin Core: 0.10.0rc1." Lol and i like your signature.  :D


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: Madness on December 28, 2014, 07:32:44 PM
Thanks for all who helped finishing this project ;D Seems like the links wasen't updated on Bitcoin.org , anyone know when the Final version will be released ? or there will be a RC 2 version before the final share  :-\


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: QuestionAuthority on December 28, 2014, 07:58:38 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

They just changed it to "Help test the latest unstable version of Bitcoin Core: 0.10.0rc1." Lol and i like your signature.  :D

I see that and thanks. Who knew there could be so many deseased whores in the Bitcoin space? lol


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: sickpig on December 28, 2014, 10:06:48 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

It's still a release candidate.

You should change thread subject to let the people know that is a release candidate rather than a final one, no?

update: thanks, well done.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Lauda on December 28, 2014, 10:35:32 PM
Great work indeed, we're moving forward nicely.
I wonder what 1.0.0 would bring us then.  :o


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 28, 2014, 10:58:52 PM
Great work indeed, we're moving forward nicely.
I wonder what 1.0.0 would bring us then.  :o

v1.0 is reserved for ultra-mainstream acceptance ;D

But some really nice features are getting implemented all the time.


Title: Re: Bitcoin Core 0.10.0 has been released
Post by: funtotry on December 28, 2014, 11:15:33 PM
Why isn't this listed on the forum news link above? It still shows 0.9.3.

They just changed it to "Help test the latest unstable version of Bitcoin Core: 0.10.0rc1." Lol and i like your signature.  :D
I don't think it would be advisable to upgrade until it is considered to be "stable" especially for newer users and users who are using QT to control/hold large amounts of bitcoin.

As many others have said, thanks to the core devs :)


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: ticoti on December 29, 2014, 01:02:46 AM
it is really good to see some visual changes in the bitcoin core


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: bg002h on December 29, 2014, 01:21:55 AM
RC1 uses BerkeleyDB?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: theymos on December 29, 2014, 01:49:15 AM
RC1 uses BerkeleyDB?

It's still used for the wallet. It's not used for anything else.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Mobius on December 29, 2014, 05:09:11 AM
Thank you! I can't wait to check it out. Great progress from the developers :)


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: kolloh on December 29, 2014, 05:13:48 AM
Looks like good progress but I will wait for the official stable build to be released before trying.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: bg002h on December 29, 2014, 06:09:16 AM
RC1 uses BerkeleyDB?

It's still used for the wallet. It's not used for anything else.

Ahh. Phew!


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: capricorn on December 29, 2014, 06:33:26 AM
look great with this release  :D :D :D
but still slow to get connections  :P :P


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: madmadmax on December 29, 2014, 10:02:33 AM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 29, 2014, 10:28:27 AM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).

What exactly are you talking about? Mine still works fine and hasn't crashed. It hasn't any catastrophic bugs.
And after all, it's a release candidate, don't use it if you don't want to and get the stable version.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Madness on December 29, 2014, 10:35:01 AM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).

What exactly are you talking about? Mine still works fine and hasn't crashed.

Same thing here , never crashed :o just had an error message when I opened it but released that It was my fault because I rebooted PC without closing the program so it didn't sync like it should be ;D all works fine now


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Foxpup on December 29, 2014, 11:09:32 AM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).
That's why it's labelled "unstable". ::) Normal users shouldn't be using it. They should stick with the "stable" releases. The purpose of this release is to find catastrophic bugs. No three letter agencies required.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: zetaray on December 29, 2014, 12:20:39 PM
Will install this major update when no serious issue arises. I am very keen to try the new fee estimate mechanism.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Q7 on December 29, 2014, 12:21:16 PM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).

So far so good for me. I see some positive changes in there and that is why did not hesitate to try it out even though it is a release candidate.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: madmadmax on December 29, 2014, 12:29:15 PM
Our three letter friends have put pressure on the foundation to introduce another buggy Bitcoin Core, I am willing to bet that within a couple of months catastrophic bugs will be found once again (whoops).
That's why it's labelled "unstable". ::) Normal users shouldn't be using it. They should stick with the "stable" releases. The purpose of this release is to find catastrophic bugs. No three letter agencies required.

Overall it's an attempt to undermine Bitcoin in hopes that we don't notice anything so that flaws can be introduced to the "stable" release that can then be adopted by the majority. There are organizations pressing the buttons behind the foundation actively trying to undermine Bitcoin and it's incredibly easy to do.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Big0Bang on December 29, 2014, 12:33:09 PM
finally come 0.1.x.x with lots of new features that's awesome.But I would wait until the final version release.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 29, 2014, 12:36:12 PM
Is there a limit on the Ignore list? Because mine's getting pretty big...

finally come 0.1.x.x with lots of new features that's awesome.But I would wait until the final version release.

Actually it's 0.10. 0.1 was the first (original) Bitcoin client source. ;)


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Amph on December 29, 2014, 12:37:36 PM
when the "delete address" will be added? it's not that important i know, but it's always a plus to have


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 29, 2014, 12:41:07 PM
when the "delete address" will be added?, it's not that important i know, but it's always a plus to have

Perhaps you could put out a request for it?
Until then, you can resort to Pywallet.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Guido on December 29, 2014, 03:44:56 PM
thanks OP


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Lauda on December 29, 2014, 07:04:27 PM
when the "delete address" will be added? it's not that important i know, but it's always a plus to have
You mean the option of deleting an address from a wallet?
Interesting, request, it would definitely be very useful.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: juju on December 29, 2014, 07:10:00 PM
Nice new features, thanks for all the hard work everyone!


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: spooderman on December 29, 2014, 07:12:30 PM
Can someone tell me how the version numbering works?

I was sure after all the 0.9.x versions the next was logically.....1.xxxx

0.1 + 0.9 = 0.10

Really guys??


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Lauda on December 29, 2014, 07:18:51 PM
Can someone tell me how the version numbering works?

I was sure after all the 0.9.x versions the next was logically.....1.xxxx

0.1 + 0.9 = 0.10

Really guys??
There is a reason it has 0.10.0. After 9 comes 10, or did you not go to primary school?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: C10H15N on December 29, 2014, 08:15:10 PM
Testing.  Thanks core devs. 


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: spooderman on December 29, 2014, 08:49:28 PM
Can someone tell me how the version numbering works?

I was sure after all the 0.9.x versions the next was logically.....1.xxxx

0.1 + 0.9 = 0.10

Really guys??
There is a reason it has 0.10.0. After 9 comes 10, or did you not go to primary school?

Thanks for the condescending response. I'm sure women find this attractive.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 29, 2014, 08:53:44 PM
Can someone tell me how the version numbering works?

I was sure after all the 0.9.x versions the next was logically.....1.xxxx

0.1 + 0.9 = 0.10

Really guys??
There is a reason it has 0.10.0. After 9 comes 10, or did you not go to primary school?

Thanks for the condescending response. I'm sure women find this attractive.

Women on the Internet. LOL!

;D


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: spooderman on December 29, 2014, 08:58:32 PM
Ok then, the men pretending to be women  :P


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: DannyHamilton on December 29, 2014, 08:59:12 PM
Can someone tell me how the version numbering works?

I was sure after all the 0.9.x versions the next was logically.....1.xxxx

0.1 + 0.9 = 0.10

Really guys??
There is a reason it has 0.10.0. After 9 comes 10, or did you not go to primary school?

Thanks for the condescending response. I'm sure women find this attractive.

With most of the software version numbering systems I've been involved in:

  • Incrementing the first number represents a major change in the architecture and underlying design of the software.
  • Incremening the second number represents new enhancements, and significant bug fixes
  • Incrementing the third number represents minor bug fixes and very small changes to features (often considered a "maintenance release")

So, we could easily end up on version 0.957.3 (3rd maintenance release of the 957th enhancement release of the original code base) some day if there is no compelling reason to change the first digit of the version number.

Interestingly, we often see altcoins trying to represent themselves as "Bitcoin 2.0" which is rather entertaining since there hasn't even been a "Bitcoin 1.0" yet.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: coa032 on December 29, 2014, 09:12:39 PM
Good work guys. keep it up. This is great improvement. But still I am waiting for final version. :)


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Meuh6879 on December 29, 2014, 09:29:55 PM
Good work guys. keep it up. This is great improvement. But still I am waiting for final version. :)

you can wait a long time, my friend ... all P2P freeware are in a "done" version (like 0.50a ... 1.16.23 or 0.89g).

v1.0 is marketing.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Buffer Overflow on December 29, 2014, 10:00:57 PM
But still I am waiting for final version. :)
You mean the stable version of 0.10.0 I'm assuming?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Lauda on December 29, 2014, 10:04:09 PM
But still I am waiting for final version. :)
You mean the stable version of 0.10.0 I'm assuming?

Could also mean that he is waiting for 1.0.0, which we might not see for many years.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: coa032 on December 29, 2014, 10:06:06 PM
But still I am waiting for final version. :)
You mean the stable version of 0.10.0 I'm assuming?

Exactly, I was not clearly enough.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: spooderman on December 29, 2014, 11:17:03 PM


With most of the software version numbering systems I've been involved in:

  • Incrementing the first number represents a major change in the architecture and underlying design of the software.
  • Incremening the second number represents new enhancements, and significant bug fixes
  • Incrementing the third number represents minor bug fixes and very small changes to features (often considered a "maintenance release")

So, we could easily end up on version 0.957.3 (3rd maintenance release of the 957th enhancement release of the original code base) some day if there is no compelling reason to change the first digit of the version number.

Interestingly, we often see altcoins trying to represent themselves as "Bitcoin 2.0" which is rather entertaining since there hasn't even been a "Bitcoin 1.0" yet.

Thanks Danny. It is unjust that you are not labelled as a "Legend" on here.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: LiteCoinGuy on December 29, 2014, 11:35:24 PM
good work and the increased syncing is great!


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: DannyHamilton on December 30, 2014, 12:06:22 AM
Thanks Danny. It is unjust that you are not labelled as a "Legend" on here.

Titles never really impress me much.

Legendary comes at a random interval between 775 and 1030 activity.

At the moment, I've got 924 activity, so I'm in the proper range, but just haven't yet reached my personal random value.

Since activity increases by 14 every 2 weeks, I should reach "Legendary" sometime in the next 15 weeks.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on December 30, 2014, 12:08:04 AM
good work and the increased syncing is great!

I've yet to test this with TOR.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Flashman on December 30, 2014, 12:54:09 AM
So, we could easily end up on version 0.957.3 (3rd maintenance release of the 957th enhancement release of the original code base) some day if there is no compelling reason to change the first digit of the version number.

Use the Mozilla system, then it will be at 40.0.0 by Valentines day.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: bitllionaire on December 30, 2014, 02:15:54 AM
cool changes

I hope we can have an stable version soon


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: HCLivess on December 30, 2014, 09:01:09 AM
Pretty nice, thanks.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Madness on December 30, 2014, 01:57:16 PM
It had 13 week left for sync with the network . I closed it (yes I waited as it says) then when I opened it again , It says that the database or something got corrupted and ask me if I restore or "Abort" when I click "ok" to restore ... well It just go back to 5 years left for sync ... anyway I can make it back to 13 week ? :( it takes time ehre


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: BadAss.Sx on December 30, 2014, 08:40:12 PM
If it needs to reindex you'll have to wait for it. But it should go faster with the RC build...


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: adaseb on December 30, 2014, 10:06:47 PM
I sure miss my SSD. Bitcoin client started up instatnely on my SSD. With my regular HHD it takes sometimes 15 minutes to load.

Its because the blockchain is too big for the SSD>


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: tl121 on December 31, 2014, 05:29:59 AM
Much faster download than 0.9.3.  Complete blockchain sync from scratch in 8.5 hours.  Speed was limited by CPU (core i5 650) rather than the network thanks to simultaneous downloads from multiple peers.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Madness on December 31, 2014, 07:01:09 AM
If it needs to reindex you'll have to wait for it. But it should go faster with the RC build...

It was reindexing as you said .. but suddenly and when It reached the "2 years xx weeks" It start synchronizing with the network again and now I should wait a lot ... why It didn't continue reindexing fast till 13 weeks left where it stopped exactly ?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Amph on January 01, 2015, 08:54:36 PM
when the "delete address" will be added? it's not that important i know, but it's always a plus to have
You mean the option of deleting an address from a wallet?
Interesting, request, it would definitely be very useful.

yeah, right now you need to re-create a new wallet to do this, it could be doing easily with a send to other folder that hide them

anyway this version is not signed yet, it is because of the rc1 state?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Parazyd on January 01, 2015, 09:47:47 PM
when the "delete address" will be added? it's not that important i know, but it's always a plus to have
You mean the option of deleting an address from a wallet?
Interesting, request, it would definitely be very useful.

yeah, right now you need to re-create a new wallet to do this, it could be doing easily with a send to other folder that hide them

anyway this version is not signed yet, it is because of the rc1 state?

It is. Grab the SHA256SUMS.asc file from the directory.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: philiveyjr on January 01, 2015, 10:26:08 PM
Downloaded it.!!! Takes forever to sync.! :/


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: ulatec on January 02, 2015, 06:48:59 AM
Digging the new fee interface :D


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Blazr on January 02, 2015, 06:51:21 AM
Initial sync is faster than it used to be, but it's still faster to torrent bootstrap.dat and sync that way.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Amph on January 02, 2015, 01:09:25 PM
when the "delete address" will be added? it's not that important i know, but it's always a plus to have
You mean the option of deleting an address from a wallet?
Interesting, request, it would definitely be very useful.

yeah, right now you need to re-create a new wallet to do this, it could be doing easily with a send to other folder that hide them

anyway this version is not signed yet, it is because of the rc1 state?

It is. Grab the SHA256SUMS.asc file from the directory.

windows it say the typical caution message when i run the installer


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Meuh6879 on January 16, 2015, 02:21:36 PM
 ;) Perfect, the RC3 of 0.10.0 work with WinXP 32 bits + all KBs installed ... and a solo-mining server or P2Pool mining client.  ;D

http://imagizer.imageshack.us/a/img673/9153/EhLX4H.jpg


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Buffer Overflow on January 16, 2015, 05:43:44 PM
I thought Windows XP was obsolete. Is it still safe to connect one of those machines to the internet?


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Meuh6879 on January 16, 2015, 06:03:32 PM
what is internet for you ?
 ;D for me, it's an updated software connected at internet.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: QuestionAuthority on January 16, 2015, 06:03:33 PM
I thought Windows XP was obsolete. Is it still safe to connect one of those machines to the internet anything made by Microsoft to the Internet?

FTFY


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Meuh6879 on January 16, 2015, 07:31:49 PM
Win : 91%
Mac : 7%
Linux : 2%

http://news.softpedia.com/news/Windows-Now-Running-on-More-than-91-Percent-of-Computers-Worldwide-364513.shtml


you can't learn from depreciates OS ... to do what you "want" to do.
i can't do what i want in mac or linux system because of proprietary driver and ... proprietary software (i don't talk about adobe or nvidia, folks).


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: IIOII on January 16, 2015, 08:02:10 PM
I thought Windows XP was obsolete. Is it still safe to connect one of those machines to the internet?

What makes you think that newer versions of Windows are safer?

Maybe these versions even have more intentional backdoors than the previous ones.

Using XP is unsafe only if you use Internet Explorer and allow scripts.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: Buffer Overflow on January 16, 2015, 08:26:10 PM
I thought Windows XP was obsolete. Is it still safe to connect one of those machines to the internet?

What makes you think that newer versions of Windows are safer?

Bit of a strawman reply here. I never mentioned anything about newer versions of Windows being safer.


Title: Re: Bitcoin Core 0.10.0rc1 has been released
Post by: IIOII on January 17, 2015, 01:06:29 PM
I thought Windows XP was obsolete. Is it still safe to connect one of those machines to the internet?

What makes you think that newer versions of Windows are safer?

Bit of a strawman reply here. I never mentioned anything about newer versions of Windows being safer.


Not intended. I really thought you were advocating an update to a newer Windows version.

From my point of view both Windows and Linux systems will never be 100% secure. I know that Linux users tend to think that their system is more secure, but an open source code does not help if people don't review the code and identify all attack vectors before others exploit them. From my point of view what's most important is to be aware that no system is 100% secure and adjust behavior accordingly.

Edit: On topic: I'm really looking forward to the final release of 0.10.0. There are a lot of great improvements.