Make const MAX_HASH_HEX_SIZE internal

This commit is contained in:
josecoll 2017-10-18 10:04:19 +01:00
parent 698b91bc5e
commit c2ff4b74e4

View File

@ -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,