From c2ff4b74e4398b7a8d442ea283c2526a1deddcd4 Mon Sep 17 00:00:00 2001 From: josecoll Date: Wed, 18 Oct 2017 10:04:19 +0100 Subject: [PATCH] Make const MAX_HASH_HEX_SIZE internal --- .../main/kotlin/net/corda/node/utilities/CordaPersistence.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/src/main/kotlin/net/corda/node/utilities/CordaPersistence.kt b/node/src/main/kotlin/net/corda/node/utilities/CordaPersistence.kt index 30c3402c49..a8c85d105d 100644 --- a/node/src/main/kotlin/net/corda/node/utilities/CordaPersistence.kt +++ b/node/src/main/kotlin/net/corda/node/utilities/CordaPersistence.kt @@ -26,7 +26,7 @@ const val NODE_DATABASE_PREFIX = "node_" * case 128 HEX characters are required. * 130 was selected instead of 128, to allow for 2 extra characters that will be used as hash-scheme identifiers. */ -const val MAX_HASH_HEX_SIZE = 130 +internal const val MAX_HASH_HEX_SIZE = 130 //HikariDataSource implements Closeable which allows CordaPersistence to be Closeable class CordaPersistence(var dataSource: HikariDataSource, private val schemaService: SchemaService,