Fix incorrectly referenced public key. (#559)

This commit is contained in:
josecoll 2017-04-20 11:11:36 +01:00 committed by GitHub
parent d2d7cbc9ec
commit d24f0ea0ba

View File

@ -49,4 +49,4 @@ val BOB: Party get() = Party("Bob", BOB_KEY.public)
val CHARLIE_KEY: KeyPair by lazy { entropyToKeyPair(BigInteger.valueOf(90)) }
/** Dummy individual identity for tests and simulations */
val CHARLIE: Party get() = Party("Charlie", BOB_KEY.public)
val CHARLIE: Party get() = Party("Charlie", CHARLIE_KEY.public)