Bitcoin Forum
April 27, 2024, 12:26:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Version 0.3.15  (Read 4503 times)
satoshi (OP)
Founder
Sr. Member
*
qt
Offline Offline

Activity: 364
Merit: 6723


View Profile
November 13, 2010, 11:26:40 PM
 #1

Version 0.3.15 is now available.

Changes:
- paytxfee switch is now per KB, so it adds the correct fee for large transactions
- sending avoids using coins with less than 6 confirmations if it can
- BitcoinMiner processes transactions in priority order based on age of dependencies
- make sure generation doesn't start before block 74000 downloaded
- bugfixes by Dean Gores
- testnet, keypoololdest and paytxfee added to getinfo
1714220806
Hero Member
*
Offline Offline

Posts: 1714220806

View Profile Personal Message (Offline)

Ignore
1714220806
Reply with quote  #2

1714220806
Report to moderator
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714220806
Hero Member
*
Offline Offline

Posts: 1714220806

View Profile Personal Message (Offline)

Ignore
1714220806
Reply with quote  #2

1714220806
Report to moderator
1714220806
Hero Member
*
Offline Offline

Posts: 1714220806

View Profile Personal Message (Offline)

Ignore
1714220806
Reply with quote  #2

1714220806
Report to moderator
1714220806
Hero Member
*
Offline Offline

Posts: 1714220806

View Profile Personal Message (Offline)

Ignore
1714220806
Reply with quote  #2

1714220806
Report to moderator
hippich
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
November 15, 2010, 04:25:12 AM
 #2

Thanks!

Could you provide link to list of "bugfixes by Dean Gores"? Can't find 'em.

neofutur
Full Member
***
Offline Offline

Activity: 146
Merit: 100



View Profile
November 15, 2010, 06:59:28 AM
 #3

 Same here, providing some kind of changelog could be useful
theymos
Administrator
Legendary
*
Offline Offline

Activity: 5180
Merit: 12900


View Profile
November 15, 2010, 07:06:14 AM
 #4

Could you provide link to list of "bugfixes by Dean Gores"? Can't find 'em.

http://bitcoin.svn.sourceforge.net/viewvc/bitcoin?view=revision&revision=173

Nothing too exciting.

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
ShadowOfHarbringer
Legendary
*
Offline Offline

Activity: 1470
Merit: 1005


Bringing Legendary Har® to you since 1952


View Profile
November 16, 2010, 09:29:00 AM
 #5

@satoshi

Does this version contain new blockchain "checkpoints" to secure the "official" chain ?

Could you please inform us about every checkpoint being inserted in news such as this ?

Gavin Andresen
Legendary
*
qt
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
November 16, 2010, 01:13:05 PM
 #6

ShadowOfHarbringer:  don't be lazy!  If you want to know if the lockins have been changed, it is easy to find out for yourself.

The blockchain checkpoints are in file main.cpp, around line 1,519:
Code:
    // Check that the block chain matches the known block chain up to a checkpoint                                                                        
    if (!fTestNet)
        if ((nHeight == 11111 && hash != uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) ||
            (nHeight == 33333 && hash != uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) ||
            (nHeight == 68555 && hash != uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) ||
            (nHeight == 70567 && hash != uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) ||
            (nHeight == 74000 && hash != uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")))
            return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight);

Even if you don't know C++ or don't know how to use subversion, you can check every release here: http://bitcoin.svn.sourceforge.net/viewvc/bitcoin/trunk/

How often do you get the chance to work on a potentially world-changing project?
bitcoinex
Sr. Member
****
Offline Offline

Activity: 350
Merit: 252


probiwon.com


View Profile WWW
November 20, 2010, 02:02:26 AM
 #7

I understand correctly that these checkpoints are a step to the adding "chain cutter", for doesn't increase chain size indefinitely?

New bitcoin lottery: probiwon.com
- Moжeт, ты eщё и в Heвидимyю Pyкy Pынкa вepyeшь? - Зaчeм жe вepoвaть в тo, чтo мoжнo нaблюдaть нeпocpeдcтвeннo?
ribuck
Donator
Hero Member
*
Offline Offline

Activity: 826
Merit: 1039


View Profile
November 20, 2010, 11:22:35 AM
 #8

Why is more than one checkpoint needed? Block 74000 (for example) is cryptographically linked to the earlier blocks, so if 74000 is OK aren't all the earlier blocks also OK?
The Madhatter
Hero Member
*****
Offline Offline

Activity: 490
Merit: 509


My avatar pic says it all


View Profile
November 20, 2010, 11:58:16 AM
 #9

Think about what happens when a new Bitcoin install is downloading from block #1... Wink
jgarzik
Legendary
*
qt
Offline Offline

Activity: 1596
Merit: 1091


View Profile
November 20, 2010, 08:45:46 PM
 #10

Think about what happens when a new Bitcoin install is downloading from block #1... Wink

...you download blocks from 1 .. 74000 before being able to verify or generate coins.  Your point?

Jeff Garzik, Bloq CEO, former bitcoin core dev team; opinions are my own.
Visit bloq.com / metronome.io
Donations / tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
The Madhatter
Hero Member
*****
Offline Offline

Activity: 490
Merit: 509


My avatar pic says it all


View Profile
November 20, 2010, 10:06:01 PM
 #11

Oh, well that's new. Smiley I haven't looked at the source since 0.3.10.
eurekafag
Full Member
***
Offline Offline

Activity: 185
Merit: 100


View Profile
November 21, 2010, 12:30:10 PM
 #12

I understand correctly that these checkpoints are a step to the adding "chain cutter", for doesn't increase chain size indefinitely?
No, it doesn't cut the chain. Any client should have the full chain to verify transactions that depends on any block. It's just a security lock to prevent chain forgery.
ribuck
Donator
Hero Member
*
Offline Offline

Activity: 826
Merit: 1039


View Profile
November 21, 2010, 03:39:55 PM
 #13

In that case I still don't understand the need for more than one checkpoint.
zipslack
Newbie
*
Offline Offline

Activity: 43
Merit: 0


View Profile
November 21, 2010, 11:18:58 PM
 #14

In that case I still don't understand the need for more than one checkpoint.

The code snippet posted by gavinandresen is run against each block as it is verified. A new client will download and verify each block in the chain in order from the beginning. If only the most recent checkpoint is included, the client could download and verify a large number of 'incorrect' blocks before discovering that it has been following the 'wrong' fork of the chain, wasting a lot of bandwidth and CPU time. (A 'wrong' fork in this case is completely valid with the exception that it isn't the longest fork. If I understand correctly the client will eventually find the 'right' fork anyway, checkpoints will just ensure it happens as quickly as possible.)
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!