Small fixes to encryptedTransactionService access

This commit is contained in:
adam.houston 2022-03-22 14:21:52 +00:00
parent 438d2da073
commit 7c4e274953
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# because some versions here need to be matched by app authors in
# their own projects. So don't get fancy with syntax!
cordaVersion=4.8.5.3-CONCLAVE-SNAPSHOT
cordaVersion=4.8.5.4-CONCLAVE-SNAPSHOT
versionSuffix=
gradlePluginsVersion=5.0.12
kotlinVersion=1.2.71
@ -14,7 +14,7 @@ java8MinUpdateVersion=171
platformVersion=11
guavaVersion=28.0-jre
# Quasar version to use with Java 8:
quasarVersion=0.7.14_r3
quasarVersion=0.7.13_r3
# Quasar version to use with Java 11:
quasarVersion11=0.8.1_r3
jdkClassifier11=jdk11

View File

@ -124,7 +124,7 @@ interface ServiceHub : ServicesForResolution {
// NOTE: Any services exposed to flows (public view) need to implement [SerializeAsToken] or similar to avoid
// their internal state from being serialized in checkpoints.
override val encryptedTransactionService: EncryptedTransactionService
//override val encryptedTransactionService: EncryptedTransactionService
/**
* The vault service lets you observe, soft lock and add notes to states that involve you or are relevant to your

View File

@ -1151,7 +1151,7 @@ abstract class AbstractNode<S>(val configuration: NodeConfiguration,
override val diagnosticsService: DiagnosticsService get() = this@AbstractNode.diagnosticsService
override val externalOperationExecutor: ExecutorService get() = this@AbstractNode.externalOperationExecutor
override val notaryService: NotaryService? get() = this@AbstractNode.notaryService
override val encryptedTransactionService: EncryptedTransactionService = this@AbstractNode.encryptedTransactionService
override val encryptedTransactionService: EncryptedTransactionService get() = this@AbstractNode.encryptedTransactionService
private lateinit var _myInfo: NodeInfo
override val myInfo: NodeInfo get() = _myInfo