Replace Party with Party.Full

Replace Party with Party.Full as an interim step to introducing the Party.Anonymised class.

Signed-off-by: Ross Nicoll <ross.nicoll@r3.com>
This commit is contained in:
Ross Nicoll
2017-02-01 11:13:50 +00:00
parent 3572b78372
commit 1b86ddfd6e
137 changed files with 415 additions and 411 deletions

View File

@ -13,10 +13,10 @@ import java.util.*
* state/ref pairs, but it doesn't necessarily generate "correct" events!
*/
class EventGenerator(
val parties: List<Party>,
val notary: Party,
val parties: List<Party.Full>,
val notary: Party.Full,
val currencies: List<Currency> = listOf(USD, GBP, CHF),
val issuers: List<Party> = parties
val issuers: List<Party.Full> = parties
) {
private var vault = listOf<StateAndRef<Cash.State>>()