fix: remove session secret salt

This commit is contained in:
Sérgio Salgado 2021-04-27 16:36:33 +01:00 committed by Josh Harvey
parent 5c68772b46
commit 254f4d83b4

View file

@ -13,7 +13,7 @@ const getSecret = () => {
return hkdf(
mnemonicHelpers.toEntropyBuffer(mnemonic),
16,
{ salt: 'lamassu-server-salt', info: 'operator-id' }
{ info: 'operator-id' }
).toString('hex')
}