This commit is contained in:
Manfred Karrer 2019-01-08 13:44:28 +01:00
parent 93c8f36410
commit f5270ed559
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -585,6 +585,7 @@ public class DaoStateService implements DaoSetupService {
public void addNonBsqTxOutput(TxOutput txOutput) {
checkArgument(txOutput.getTxOutputType() == TxOutputType.ISSUANCE_CANDIDATE_OUTPUT,
"txOutput must be type ISSUANCE_CANDIDATE_OUTPUT");
log.info("addNonBsqTxOutput: txOutput={}", txOutput);
daoState.getNonBsqTxOutputMap().put(txOutput.getKey(), txOutput);
}