File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ cardano-cli query protocol-parameters --testnet-magic 42 --out-file protocol.jso
140140```
141141
1421425 . Create a ` signing-keys ` folder under your projects root with the necessary signig key file(s).
143- The files should be named in the following format: ` signing-key-PUBKEYHASH .skey `
143+ The files should be named in the following format: ` signing-key-PUBKEYHASHHEX .skey ` and ` verification-key-PUBKEYHASHHEX.vkey `
144144
145145Use the cardano-cli to find out the pub key hash for your key:
146146
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ toSigningKeyFile signingKeyFileDir sKey =
250250
251251toVerificationKeyFile :: FilePath -> VerificationKey PaymentKey -> (FilePath , MockFile )
252252toVerificationKeyFile signingKeyFileDir vKey =
253- ( signingKeyFileDir ++ " /signing -key-" ++ show (Ledger. pubKeyHash (vkeyToPubKey vKey)) ++ " .vkey"
253+ ( signingKeyFileDir ++ " /verification -key-" ++ show (Ledger. pubKeyHash (vkeyToPubKey vKey)) ++ " .vkey"
254254 , TextEnvelopeFile $ serialiseToTextEnvelope Nothing vKey
255255 )
256256
You can’t perform that action at this time.
0 commit comments