Skip to content

Commit

Permalink
Add the batch of release v3.3.2 commits
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-at-bcn committed Oct 9, 2018
1 parent 32344c1 commit 560d05a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
@@ -1,5 +1,9 @@
## Release Notes

### v3.3.2

- Fixed bug when an invalid transaction may persist in the payment queue.

### v3.3.1

- The `create_transaction` method can now create transactions with fee < 0.01 BCN iff both `fee_per_byte` and transaction size are small enough.
Expand Down
2 changes: 1 addition & 1 deletion src/Core/TransactionBuilder.cpp
Expand Up @@ -522,7 +522,7 @@ bool UnspentSelector::select_optimal_outputs(HaveCoins *have_coins, DustCoins *d
select_max_outputs(have_coins, dust_coins, total_amount, anonymity, std::numeric_limits<size_t>::max());
if (small_optimizations)
optimize_amounts(have_coins, max_digit, total_amount);
return true;
return m_used_total >= total_amount;
}

void UnspentSelector::select_max_outputs(
Expand Down
4 changes: 2 additions & 2 deletions src/version.hpp
Expand Up @@ -4,8 +4,8 @@
#pragma once

// defines are for Windows resource compiler
#define bytecoin_VERSION_WINDOWS_COMMA 3, 18, 10, 3
#define bytecoin_VERSION_STRING "3.3.1"
#define bytecoin_VERSION_WINDOWS_COMMA 3, 18, 10, 9
#define bytecoin_VERSION_STRING "3.3.2"

#ifndef RC_INVOKED // Windows resource compiler

Expand Down

0 comments on commit 560d05a

Please sign in to comment.