From 718ddae7daadac5966302ae67395ecc08615a33e Mon Sep 17 00:00:00 2001 From: Pawel Jakubas Date: Thu, 7 Sep 2023 11:38:24 +0200 Subject: [PATCH] post rebase fix --- lib/wallet/src/Cardano/Wallet/Transaction.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/wallet/src/Cardano/Wallet/Transaction.hs b/lib/wallet/src/Cardano/Wallet/Transaction.hs index f610e52ee93..c3401b2bf84 100644 --- a/lib/wallet/src/Cardano/Wallet/Transaction.hs +++ b/lib/wallet/src/Cardano/Wallet/Transaction.hs @@ -232,8 +232,6 @@ data TransactionCtx = TransactionCtx -- ^ Script template regulating delegation credentials , txNativeScriptInputs :: Map TxIn (Script KeyHash) -- ^ A map of script hashes related to inputs. Only for multisig wallets - , txCollateralRequirement :: SelectionCollateralRequirement - -- ^ The collateral requirement. , txReferenceScript :: Maybe (Script KeyHash) -- ^ The reference script. } deriving Generic @@ -313,7 +311,6 @@ defaultTransactionCtx = TransactionCtx , txPaymentCredentialScriptTemplate = Nothing , txStakingCredentialScriptTemplate = Nothing , txNativeScriptInputs = Map.empty - , txCollateralRequirement = SelectionCollateralNotRequired , txReferenceScript = Nothing }