Skip to content

Commit 7431b11

Browse files
committed
Fix mock verification-key filepaths.
1 parent 45d3119 commit 7431b11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ cardano-cli query protocol-parameters --testnet-magic 42 --out-file protocol.jso
140140
```
141141

142142
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`
144144

145145
Use the cardano-cli to find out the pub key hash for your key:
146146

test/Spec/MockContract.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ toSigningKeyFile signingKeyFileDir sKey =
250250

251251
toVerificationKeyFile :: FilePath -> VerificationKey PaymentKey -> (FilePath, MockFile)
252252
toVerificationKeyFile 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

0 commit comments

Comments
 (0)