Skip to content

Commit

Permalink
Merge pull request #306 from input-output-hk/cad-1331-fix-shell
Browse files Browse the repository at this point in the history
CAD-1331:  fix shell entry
  • Loading branch information
deepfire committed Aug 10, 2020
2 parents 5abe42c + 46a8e65 commit 00e192e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell.nix
Expand Up @@ -32,7 +32,7 @@ let
pk=$(cardano-cli signing-key-public --real-pbft --secret $signing_key | fgrep 'public key (base64):' | cut -d: -f2 | xargs echo -n)
delegate_cert=keys/delegation-cert.00$i.json
echo "generating delegation certificate for $pk in $delegate_cert"
${jq}/bin/jq ".heavyDelegation | .[] | select(.delegatePk == \"$pk\")" < ${genesisFile} > $delegate_cert
${jq}/bin/jq ".heavyDelegation | .[] | select(.delegatePk == \"$pk\")" < ${toString genesisFile} > $delegate_cert
done
'';
create-shelley-genesis-and-keys =
Expand Down

0 comments on commit 00e192e

Please sign in to comment.