Bitcoin Forum
May 12, 2024, 10:20:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: wallet.dat file format versions  (Read 248 times)
jnano (OP)
Member
**
Offline Offline

Activity: 301
Merit: 74


View Profile
March 13, 2019, 07:16:13 PM
Merited by vapourminer (1), ABCbits (1)
 #1

Is there a list of wallet.dat format versions, and what's changed in each?

What are some reasons to want to -upgradewallet, or the contrary, to not upgrade?

While debug.log reports nFileVersion, it isn't the format version.
Is there a way to get Core to report the actual format version?
1715509214
Hero Member
*
Offline Offline

Posts: 1715509214

View Profile Personal Message (Offline)

Ignore
1715509214
Reply with quote  #2

1715509214
Report to moderator
1715509214
Hero Member
*
Offline Offline

Posts: 1715509214

View Profile Personal Message (Offline)

Ignore
1715509214
Reply with quote  #2

1715509214
Report to moderator
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
achow101
Moderator
Legendary
*
expert
Offline Offline

Activity: 3388
Merit: 6635


Just writing some code


View Profile WWW
March 13, 2019, 07:30:19 PM
Merited by HCP (2), vapourminer (1), ABCbits (1)
 #2

A list of wallet versions can be found in the source code itself: https://github.com/bitcoin/bitcoin/blob/master/src/wallet/wallet.h#L108. The names for each version are fairly self explanatory. There are also brief comments for each one.

What are some reasons to want to -upgradewallet, or the contrary, to not upgrade?
Upgrading lets you use new wallet features that are not backwards compatible.

Conversely if you think you will downgrade at some point in time, you probably won't want to downgrade in order to maintain compatibility with old wallet software.

While debug.log reports nFileVersion, it isn't the format version.
Is there a way to get Core to report the actual format version?
AFAIK, no, at least not logged to the debug.log file. This is being changed in this PR: https://github.com/bitcoin/bitcoin/pull/15588

You can get the actual wallet file version using the getwalletinfo RPC command.

jnano (OP)
Member
**
Offline Offline

Activity: 301
Merit: 74


View Profile
March 13, 2019, 07:47:36 PM
 #3

Thanks. It was indeed strange for nFileVersion to actually mean "nLastClientVer".

I guess the WalletFeature values correlate roughly with software versions. Why the ..99.. in the newer ones?
achow101
Moderator
Legendary
*
expert
Offline Offline

Activity: 3388
Merit: 6635


Just writing some code


View Profile WWW
March 13, 2019, 08:16:18 PM
Merited by bones261 (2), ABCbits (1), jnano (1)
 #4

Thanks. It was indeed strange for nFileVersion to actually mean "nLastClientVer".
It's due to legacy reasons. The original Bitcoin client had one consistent version number for everything, including the client version, the wallet file version, network protocol version, etc. Over time, these have been separated because it doesn't make any sense to have one version number for everything as they aren't all tied to each other that strongly. However, because of this original versioning model, the wallet version number would increment for every new client version and this was reflected in the wallet file by updating the "version" record.

As the version number was separated from the client version number, it became necessary to have the wallet have its own actual version number. Unfortunately the "version" field could not be used for backwards compatibility reasons. It's old behavior of updating for every new client had to be maintained, so it effectively became an indicator for the highest versioned client that has opened that wallet file.

I guess the WalletFeature values correlate roughly with software versions. Why the ..99.. in the newer ones?
This is also due to legacy reasons. As I mentioned above, the wallet version number was tied to the client version number. The client version number for the development version of Bitcoin Core ends with 99, so wallet versions where the version number was bumped during development just followed the client version number and thus also ended with 99. The client and wallet version numbers are no longer tied together so we can use other version numbers. However the same convention may remain as it does obviously indicate which software version first introduced a feature.

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!