Skip to content

Commit 6967f79

Browse files
author
Aleksandr Penskoi
committed
Fix configuration file examples and paths to them.
1 parent 6f9b022 commit 6967f79

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ main :: IO ()
7373
main = do
7474
pabConf <-
7575
either error id
76-
<$> BotPlutusInterface.loadPABConfig "pabConfig.value"
76+
<$> BotPlutusInterface.loadPABConfig "./pabConfig.value"
7777
BotPlutusInterface.runPAB @MyContracts pabConf
7878
```
7979

examples/plutus-game/app/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ main :: IO ()
4242
main = do
4343
pabConf <-
4444
either error id
45-
<$> BotPlutusInterface.loadPABConfig "config/pabConfig.value"
45+
<$> BotPlutusInterface.loadPABConfig "./pabConfig.value"
4646
BotPlutusInterface.runPAB @GameContracts pabConf

examples/plutus-game/pabConfig.value

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ signingKeyFileDir: "./signing-keys"
1313
-- Directory where the encoded transaction files will be saved
1414
txFileDir: "./txs"
1515
-- Protocol params file location relative to the cardano-cli working directory (needed for the cli)
16-
protocolParamsFile: "./config/protocol.json"
16+
protocolParamsFile: "./protocol.json"
1717
-- Dry run mode will build the tx, but skip the submit step
1818
dryRun: true
1919
logLevel: debug

examples/plutus-nft/app/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ main :: IO ()
4242
main = do
4343
pabConf <-
4444
either error id
45-
<$> BotPlutusInterface.loadPABConfig "config/pabConfig.value"
45+
<$> BotPlutusInterface.loadPABConfig "./pabConfig.value"
4646
BotPlutusInterface.runPAB @MintNFTContracts pabConf

examples/plutus-nft/pabConfig.value

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ signingKeyFileDir: "./signing-keys"
1313
-- Directory where the encoded transaction files will be saved
1414
txFileDir: "./txs"
1515
-- Protocol params file location relative to the cardano-cli working directory (needed for the cli)
16-
protocolParamsFile: "./config/protocol.json"
16+
protocolParamsFile: "./protocol.json"
1717
-- Dry run mode will build the tx, but skip the submit step
1818
dryRun: true
1919
logLevel: debug

examples/plutus-transfer/app/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ main :: IO ()
4141
main = do
4242
pabConf <-
4343
either error id
44-
<$> BotPlutusInterface.loadPABConfig "config/pabConfig.value"
44+
<$> BotPlutusInterface.loadPABConfig "./pabConfig.value"
4545
BotPlutusInterface.runPAB @TransferContracts pabConf

examples/plutus-transfer/pabConfig.value

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ signingKeyFileDir: "./signing-keys"
1313
-- Directory where the encoded transaction files will be saved
1414
txFileDir: "./txs"
1515
-- Protocol params file location relative to the cardano-cli working directory (needed for the cli)
16-
protocolParamsFile: "./config/protocol.json"
16+
protocolParamsFile: "./protocol.json"
1717
-- Dry run mode will build the tx, but skip the submit step
1818
dryRun: true
1919
logLevel: debug

0 commit comments

Comments
 (0)