Merging forward updates from release/os/4.11 to release/os/4.12 - 2023-10-19

This commit is contained in:
r3-build 2023-10-19 11:12:34 +00:00
commit f296a82642
2 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,7 @@ data class LedgerRecoveryParameters(
val useAllNetworkNodes: Boolean = false,
val dryRun: Boolean = false,
val useTimeWindowNarrowing: Boolean = true,
val verboseLogging: Boolean = true,
val verboseLogging: Boolean = false,
val recoveryBatchSize: Int = 1000
)

View File

@ -94,6 +94,10 @@ data class ReceiverDistributionRecord(
) : DistributionRecord() {
override val id: SecureHash
get() = this.txId
override fun toString(): String {
return "txId: $txId, peerPartyId: $peerPartyId, timestamp: $timestamp, timestampDiscriminator: $timestampDiscriminator, receiverStatesToRecord: $receiverStatesToRecord"
}
}
@CordaSerializable