Skip to content

Commit 3732887

Browse files
committed
merge fixes
1 parent 6c93196 commit 3732887

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

bot-plutus-interface.cabal

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,11 @@ library
8484
BotPlutusInterface.Effects
8585
BotPlutusInterface.Estimate
8686
BotPlutusInterface.Files
87+
BotPlutusInterface.Helpers
8788
BotPlutusInterface.QueryNode
8889
BotPlutusInterface.Server
8990
BotPlutusInterface.Types
9091
BotPlutusInterface.UtxoParser
91-
BotPlutusInterface.Server
92-
BotPlutusInterface.Helpers
9392
build-depends:
9493
, aeson ^>=1.5.0.0
9594
, QuickCheck

examples/ex-units/app/Main.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ mkPabConf pparams pparamsFile clusterDir ownPkh =
7171
, pcTipPollingInterval = 1_000_000
7272
, pcSlotConfig = def
7373
, pcOwnPubKeyHash = ownPkh
74+
, pcOwnStakePubKeyHash = Nothing
7475
, pcScriptFileDir = Text.pack $ clusterDir </> "bot-plutus-interface/scripts"
7576
, pcSigningKeyFileDir = Text.pack $ clusterDir </> "bot-plutus-interface/signing-keys"
7677
, pcTxFileDir = Text.pack $ clusterDir </> "bot-plutus-interface/txs"

examples/ex-units/ex-units.cabal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ library
8686
, plutus-pab
8787
, plutus-tx
8888
, text
89+
, plutus-tx-plugin
8990

9091

9192

src/BotPlutusInterface/CardanoCLI.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ buildDraftTx ::
185185
Eff effs (Either Text FilePath)
186186
buildDraftTx pabConf privKeys tx = do
187187
_ <- buildTx @w pabConf privKeys emptyBudget tx
188-
return $ Right (Text.unpack $ txFilePath pabConf "raw" tx)
188+
return $ Right (Text.unpack $ txFilePath pabConf "raw" (txId tx))
189189

190190
-- | Build a tx body and write it to disk
191191
buildTx ::

0 commit comments

Comments
 (0)