Skip to content

Commit

Permalink
Language fix, previous coinbase maturity
Browse files Browse the repository at this point in the history
  • Loading branch information
wargo32 committed Jul 9, 2015
1 parent 78de72e commit 2cdcdc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB
/** The pre-allocation chunk size for rev?????.dat files (since 0.8) */
static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */
static const int COINBASE_MATURITY = 100;
static const int COINBASE_MATURITY = 30;
/** Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. */
static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC
/** Maximum number of script-checking threads allowed */
Expand Down Expand Up @@ -145,7 +145,7 @@ extern bool fAlerts;
extern CBlockIndex *pindexBestHeader;

/** Minimum disk space required - used in CheckDiskSpace() */
static const uint64_t nMinDiskSpace = 52428800;
static const uint64_t nMinDiskSpace = 3276800;

/** Register a wallet to receive updates from core */
void RegisterValidationInterface(CValidationInterface* pwalletIn);
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_pl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
</message>
</context>
<context>
<name>PolishcoinGUI</name>
<name>BitcoinGUI</name>
<message>
<source>Sign &amp;message...</source>
<translation>Podpisz wiado&amp;mość...</translation>
Expand Down Expand Up @@ -2781,7 +2781,7 @@ Adres: %4
</message>
</context>
<context>
<name>polishcoin-core</name>
<name>bitcoin-core</name>
<message>
<source>Options:</source>
<translation>Opcje:</translation>
Expand Down

0 comments on commit 2cdcdc6

Please sign in to comment.