Encumbrances implemented by reference to an index of an output state

This commit is contained in:
jamescarlyle 2016-08-18 20:39:34 +01:00
parent ff1a1c4848
commit 2c7d6fc053

View File

@ -99,7 +99,6 @@ sealed class TransactionVerificationException(val tx: LedgerTransaction, cause:
class InvalidNotaryChange(tx: LedgerTransaction) : TransactionVerificationException(tx, null)
class NotaryChangeInWrongTransactionType(tx: LedgerTransaction, val outputNotary: Party) : TransactionVerificationException(tx, null) {
override fun toString(): String = "Found unexpected notary change in transaction. Tx notary: ${tx.notary}, found: ${outputNotary}"
class TransactionMissingEncumbranceException(tx: LedgerTransaction) : TransactionVerificationException(tx, null)
}
class TransactionMissingEncumbranceException(tx: LedgerTransaction) : TransactionVerificationException(tx, null)
}