Include party allocation related events in integrity check (#3758)

This commit is contained in:
Brian Healey 2019-12-06 03:22:52 -05:00 committed by Gerolf Seitz
parent 9a27ed092f
commit 71205e1f78

View File

@ -118,6 +118,10 @@ object IntegrityCheck extends App {
assert(updates.head.isInstanceOf[Update.ConfigurationChanged])
case Proto.DamlLogEntry.PayloadCase.CONFIGURATION_REJECTION_ENTRY =>
assert(updates.head.isInstanceOf[Update.ConfigurationChangeRejected])
case Proto.DamlLogEntry.PayloadCase.PARTY_ALLOCATION_ENTRY =>
assert(updates.head.isInstanceOf[Update.PartyAddedToParticipant])
case Proto.DamlLogEntry.PayloadCase.PARTY_ALLOCATION_REJECTION_ENTRY =>
assert(updates.head.isInstanceOf[Update.PartyAllocationRejected])
case _ =>
()
}