Skip to content

Commit e97192a

Browse files
authored
Merge pull request #1094 from IntersectMBO/jordan/remove-makeShelleyTransactionBody
Do not merge: Remove `makeShelleyTransactionBody` and accompanying functions
2 parents 96be56f + f9822de commit e97192a

4 files changed

Lines changed: 7 additions & 656 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
project: cardano-api
2+
pr: 1094
3+
kind:
4+
- breaking
5+
description: |
6+
Remove the deprecated `makeShelleyTransactionBody` and `createAndValidateTransactionBody` functions along with their supporting helpers. Use `createTransactionBody` instead.

cardano-api/gen/Test/Gen/Cardano/Api/Typed.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ genValidTxBody sbe =
11251125
Gen.mapMaybe
11261126
( \content ->
11271127
either (const Nothing) (Just . (,content)) $
1128-
createAndValidateTransactionBody sbe content
1128+
createTransactionBody sbe content
11291129
)
11301130
(genTxBodyContent sbe)
11311131

cardano-api/src/Cardano/Api/Tx.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ module Cardano.Api.Tx
177177
-- ** Transaction body
178178
TxBody (..)
179179
, createTransactionBody
180-
, createAndValidateTransactionBody
181180
, TxBodyContent (..)
182181

183182
-- ** Byron only

0 commit comments

Comments
 (0)