Skip to content

Commit

Permalink
Fix incorrectly referenced public key. (corda#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
josecoll authored Apr 20, 2017
1 parent d2d7cbc commit d24f0ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit d24f0ea

Please sign in to comment.