File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ library
8686 , plutus-pab
8787 , plutus-tx
8888 , text
89+ , plutus-tx-plugin
8990
9091
9192
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ buildDraftTx ::
185185 Eff effs (Either Text FilePath )
186186buildDraftTx 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
191191buildTx ::
You can’t perform that action at this time.
0 commit comments