@@ -327,6 +327,9 @@ instance
327327 ) => ToObject (ShelleyLedgerPredFailure ledgerera ) where
328328 toObject verb (UtxowFailure f) = toObject verb f
329329 toObject verb (DelegsFailure f) = toObject verb f
330+ toObject _verb (ShelleyWithdrawalsMissingAccounts _withdrawals) = undefined -- TODO(geo2a)
331+ toObject _verb (ShelleyIncompleteWithdrawals _payload) = undefined -- TODO(geo2a)
332+
330333
331334instance
332335 ( ToObject (PredicateFailure (Core. EraRule " CERTS" ledgerera ))
@@ -338,9 +341,9 @@ instance
338341 mconcat [ " kind" .= String " ConwayWithdrawalsMissingAccounts"
339342 , " withdrawals" .= unWithdrawals missingWithdrawals
340343 ]
341- toObject _ (Conway. ConwayIncompleteWithdrawals incompleteWithdrawals ) =
344+ toObject _ (Conway. ConwayIncompleteWithdrawals _incompleteWithdrawals ) =
342345 mconcat [ " kind" .= String " ConwayIncompleteWithdrawals"
343- , " withdrawals" .= unWithdrawals incompleteWithdrawals
346+ -- , "withdrawals" .= undefined -- TODO(geo2a)
344347 ]
345348 toObject _ (Conway. ConwayTxRefScriptsSizeTooBig Mismatch {mismatchSupplied, mismatchExpected}) =
346349 mconcat [ " kind" .= String " ConwayTxRefScriptsSizeTooBig"
@@ -718,10 +721,6 @@ instance
718721 mconcat [ " kind" .= String " DelegateeNotRegisteredDELEG"
719722 , " targetPool" .= targetPool
720723 ]
721- toObject _verb (WithdrawalsNotInRewardsDELEGS incorrectWithdrawals) =
722- mconcat [ " kind" .= String " WithdrawalsNotInRewardsCERTS"
723- , " incorrectWithdrawals" .= unWithdrawals incorrectWithdrawals
724- ]
725724 toObject verb (DelplFailure f) = toObject verb f
726725
727726
0 commit comments