Merge pull request #7540 from corda/merge-release/os/4.11-release/os/4.12-2023-10-19-18

ENT-10100: Merging forward updates from release/os/4.11 to release/os/4.12 - 2023-10-19
This commit is contained in:
Adel El-Beik 2023-10-19 17:56:42 +01:00 committed by GitHub
commit 3ed68aa745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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