Skip to content

Commit

Permalink
Merge pull request #877 from IntersectMBO/cl/treasurywithdrawal
Browse files Browse the repository at this point in the history
Fix treasury withdrawal.
  • Loading branch information
CarlosLopezDeLara authored Aug 28, 2024
2 parents 5e4a77f + 052ce21 commit 9e2dd2c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ pGovernanceActionTreasuryWithdrawalCmd era = do
<*> pStakeIdentifier (Just "deposit-return")
<*> pAnchorUrl
<*> pAnchorDataHash
<*> many ((,) <$> pStakeVerificationKeyOrHashOrFile (Just "funds-receiving") <*> pTransferAmt)
<*> some ((,) <$> pStakeVerificationKeyOrHashOrFile (Just "funds-receiving") <*> pTransferAmt)
<*> optional pConstitutionScriptHash
<*> pFileOutDirection "out-file" "Output filepath of the treasury withdrawal."
)
Expand Down
4 changes: 2 additions & 2 deletions cardano-cli/test/cardano-cli-golden/files/golden/help.cli
Original file line number Diff line number Diff line change
Expand Up @@ -6855,12 +6855,12 @@ Usage: cardano-cli conway governance action create-treasury-withdrawal
)
--anchor-url TEXT
--anchor-data-hash HASH
[
(
( --funds-receiving-stake-verification-key STRING
| --funds-receiving-stake-verification-key-file FILE
| --funds-receiving-stake-key-hash HASH
)
--transfer LOVELACE]
--transfer LOVELACE)
[--constitution-script-hash HASH]
--out-file FILE

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Usage: cardano-cli conway governance action create-treasury-withdrawal
)
--anchor-url TEXT
--anchor-data-hash HASH
[
(
( --funds-receiving-stake-verification-key STRING
| --funds-receiving-stake-verification-key-file FILE
| --funds-receiving-stake-key-hash HASH
)
--transfer LOVELACE]
--transfer LOVELACE)
[--constitution-script-hash HASH]
--out-file FILE

Expand Down

0 comments on commit 9e2dd2c

Please sign in to comment.