diff options
author | antonio-fr <anferron@gmail.com> | 2015-08-10 23:56:04 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-12-02 15:18:23 +0100 |
commit | 74f7341fecd327587cba77db3fc1455efcaa20be (patch) | |
tree | 0688ea374de1fe4f8845cc08ffa70270bfbc6f7a /src | |
parent | e69bad19f8d314862f53a7e0acc52247c9662275 (diff) |
Update miner.cpp: Fix typo in comment
Diffstat (limited to 'src')
-rw-r--r-- | src/miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index c6db00d301..2728c7e6a7 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -98,7 +98,7 @@ CBlockTemplate* CreateNewBlock(const CChainParams& chainparams, const CScript& s // Largest block you're willing to create: unsigned int nBlockMaxSize = GetArg("-blockmaxsize", DEFAULT_BLOCK_MAX_SIZE); - // Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity: + // Limit to between 1K and MAX_BLOCK_SIZE-1K for sanity: nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize)); // How much of the block should be dedicated to high-priority transactions, |