Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashatyrev committed Jun 28, 2016
1 parent e63dd90 commit e854dd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String validateTransactionChanges(BlockStore blockStore, Block curBlock,
BigInteger oldBalance = repositoryTrack.getOriginRepository().getBalance(address.getData());
if (newBalance.compareTo(oldBalance) < 0) {
for (byte[] whiteRecipient : whitelist) {
if (FastByteComparisons.equal(tx.getReceiveAddress(), whiteRecipient)) {
if (FastByteComparisons.compareTo(tx.getReceiveAddress(), 0, 20, whiteRecipient, 0, 20) == 0) {
return null;
}
}
Expand Down

0 comments on commit e854dd5

Please sign in to comment.