1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-22 22:25:26 +01:00

using a different seed for alice and bob in tests

This commit is contained in:
pm47 2017-01-19 14:59:58 +01:00
parent b4cb612f4a
commit 11935151a2

View file

@ -45,7 +45,7 @@ object TestConstants {
paymentKey = Scalar(Array.fill[Byte](32)(13) :+ 1.toByte),
delayedPaymentKey = Scalar(Array.fill[Byte](32)(14) :+ 1.toByte),
defaultFinalScriptPubKey = Script.pay2wpkh(Scalar(Array.fill[Byte](32)(15) :+ 1.toByte).toPoint),
shaSeed = Crypto.sha256("alice-seed".getBytes()),
shaSeed = Crypto.sha256("bob-seed".getBytes()),
isFunder = false
)
}