Skip to content

Commit 4f1342b

Browse files
committed
remove force budget from examples
1 parent 331cc71 commit 4f1342b

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ main = do
9696
, -- Dry run mode will build the tx, but skip the submit step
9797
pcDryRun = False
9898
, pcLogLevel = Debug
99-
, -- | Forced budget for scripts, as optional (CPU Steps, Memory Units)
100-
pcForceBudget = Nothing
10199
, -- Protocol params file location relative to the cardano-cli working directory (needed for the cli)
102100
, pcProtocolParamsFile = "./protocol.json"
103101
, pcEnableTxEndpoint = True

examples/plutus-game/app/Main.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ main = do
6868
, pcDryRun = True
6969
, pcLogLevel = Debug
7070
, pcProtocolParamsFile = "./protocol.json"
71-
, pcForceBudget = Just (9_000_000_000, 15_000_000)
7271
, pcEnableTxEndpoint = True
7372
}
7473
BotPlutusInterface.runPAB @GameContracts pabConf

examples/plutus-nft/app/Main.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ main = do
6868
, pcDryRun = True
6969
, pcLogLevel = Debug
7070
, pcProtocolParamsFile = "./protocol.json"
71-
, pcForceBudget = Just (1000, 1000)
7271
, pcEnableTxEndpoint = True
7372
}
7473
BotPlutusInterface.runPAB @MintNFTContracts pabConf

examples/plutus-transfer/app/Main.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ main = do
6767
, pcDryRun = True
6868
, pcLogLevel = Debug
6969
, pcProtocolParamsFile = "./protocol.json"
70-
, pcForceBudget = Nothing
7170
, pcEnableTxEndpoint = True
7271
}
7372
BotPlutusInterface.runPAB @TransferContracts pabConf

0 commit comments

Comments
 (0)