Skip to content

Commit 74f7341

Browse files
antonio-frMarcoFalke
authored andcommitted
Update miner.cpp: Fix typo in comment
1 parent e69bad1 commit 74f7341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/miner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ CBlockTemplate* CreateNewBlock(const CChainParams& chainparams, const CScript& s
9898

9999
// Largest block you're willing to create:
100100
unsigned int nBlockMaxSize = GetArg("-blockmaxsize", DEFAULT_BLOCK_MAX_SIZE);
101-
// Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity:
101+
// Limit to between 1K and MAX_BLOCK_SIZE-1K for sanity:
102102
nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize));
103103

104104
// How much of the block should be dedicated to high-priority transactions,

0 commit comments

Comments
 (0)