-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ADP-3378] Bump node to 8.12 #4657
Conversation
87997b6
to
8a7d8d4
Compare
2535586
to
f071494
Compare
TranslationLogicMissingInput inp -> | ||
apiError err400 UnresolvedInputs | ||
$ T.unwords | ||
[ "The transaction I was given contains inputs I don't know" | ||
, "about. Please ensure all foreign inputs are specified as " | ||
, "part of the API request. The unknown input is:\n\n" | ||
, T.pack $ show inp | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is basically unreachable anyway.
apiError err400 TranslationByronTxOutInContext | ||
$ T.unwords | ||
[ "The transaction I was given contains a Byron-style TxOut" | ||
, "which is not supported when executing Plutus scripts. " | ||
, "The offending TxOut is:\n\n" | ||
, T.pack $ show txOut | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not unreachable, but i'd question the worth of maintaining this error mapping now. I don't think anyone uses it.
f071494
to
affb8f5
Compare
@@ -24,6 +24,7 @@ | |||
{- HLINT ignore "Use camelCase" -} | |||
|
|||
{-# OPTIONS_GHC -fno-warn-orphans #-} | |||
{-# OPTIONS_GHC -fno-warn-deprecations #-} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can be addressed in later PR IMO.
1f29ad3
to
96a4f97
Compare
@@ -147,6 +147,7 @@ constructAddressFromIx role pTemplate dTemplate ix = | |||
Nothing -> | |||
createEnterpriseAddress pScript | |||
|
|||
-- | NOTE: The roles 'DRep', 'CCCold', 'CCHot' are not supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although, I think restricting the domain with a new type containing a subset of CA.Role
should be fairly painless. May try...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
96a4f97
to
1be0fb9
Compare
ad8cc9f
to
c884616
Compare
- Adjust versions of tree-diff, ansi-wl-pprint, bech32 - wip: fix compilation errors - Use cardano-addresses with optparse-applicative 0.18.1 - Compilation fixes in BalanceSepec - Fixes in `Cardano.Api.Gen` - fixes for balance-tx tests - Fix and simplify `ErrAssignReedemers` - Regenerate Wallet CLI goldens - fixup replaceCosignersWithVerKeys
…ers` Proper fix can go in another PR and task.
c884616
to
6758721
Compare
Comments
Issue Number
ADP-3381