diff --git a/lib/core/src/Cardano/Wallet.hs b/lib/core/src/Cardano/Wallet.hs index f4da594e54f..5d6a422c087 100644 --- a/lib/core/src/Cardano/Wallet.hs +++ b/lib/core/src/Cardano/Wallet.hs @@ -183,6 +183,7 @@ module Cardano.Wallet -- * Utilities , throttle , guardHardIndex + , nullFluff -- * Logging , WalletWorkerLog (..) @@ -2967,3 +2968,7 @@ instance HasSeverityAnnotation TxSubmitLog where MsgRetryPostTxResult _ (Right _) -> Info MsgRetryPostTxResult _ (Left _) -> Debug MsgProcessPendingPool msg -> getSeverityAnnotation msg + +-- | Empty fluff. +nullFluff :: Monoid a => a +nullFluff = mempty