Fixed a bug with index bounds checking

This commit is contained in:
Alex Morcos 2014-07-25 21:21:10 -04:00
parent 3955c3940e
commit 17f15678d3
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ public:
size_t nPrevSize = 0;
for (int i = 0; i < nBlocksToConfirm; i++)
nPrevSize += history.at(i).PrioritySamples();
size_t index = min(nPrevSize + nBucketSize/2, sortedFeeSamples.size()-1);
size_t index = min(nPrevSize + nBucketSize/2, sortedPrioritySamples.size()-1);
return sortedPrioritySamples[index];
}