File tree 2 files changed +2
-2
lines changed
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
140
140
```
141
141
142
142
5 . 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 `
144
144
145
145
Use the cardano-cli to find out the pub key hash for your key:
146
146
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ toSigningKeyFile signingKeyFileDir sKey =
250
250
251
251
toVerificationKeyFile :: FilePath -> VerificationKey PaymentKey -> (FilePath , MockFile )
252
252
toVerificationKeyFile signingKeyFileDir vKey =
253
- ( signingKeyFileDir ++ " /signing -key-" ++ show (Ledger. pubKeyHash (vkeyToPubKey vKey)) ++ " .vkey"
253
+ ( signingKeyFileDir ++ " /verification -key-" ++ show (Ledger. pubKeyHash (vkeyToPubKey vKey)) ++ " .vkey"
254
254
, TextEnvelopeFile $ serialiseToTextEnvelope Nothing vKey
255
255
)
256
256
You can’t perform that action at this time.
0 commit comments