Remove protectedDataStore at blindVote

- Fix issue with same address for change and issuance candidate (use freshReceiveAddress instead of currentReceiveAddress)
- Check if issuance candidate ended up in an issuance tx at StateService.isBsqTxOutputType
- Change dust value to 546
- Remove blockHash in BlindVoteAppendOnlyPayload
This commit is contained in:
Manfred Karrer 2018-06-08 13:25:23 +02:00
parent de9ced06d3
commit b2aaed9c0d
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -43,7 +43,7 @@ public class BsqValidator extends AltcoinValidator {
private Coin maxValue; private Coin maxValue;
@Nullable @Nullable
private Coin availableBalance; private Coin availableBalance;
private Coin minValue = Coin.valueOf(2730); // dust private Coin minValue = Coin.valueOf(546); // dust
@Override @Override
protected double getMinValue() { protected double getMinValue() {