aboutsummaryrefslogtreecommitdiff
path: root/src/types/history.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-03-12 00:44:28 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-03-12 00:44:28 +0530
commit2c52046f0bf358a5e07c53394b3b72d091356cce (patch)
tree8993c992b9c8240ee865671cdfbab380e61af96c /src/types/history.ts
parent6e2881fabf74a3c1da8e94dcbe3e68fce6080d9e (diff)
downloadwallet-core-2c52046f0bf358a5e07c53394b3b72d091356cce.tar.xz
full recoup, untested/unfinished first attempt
Diffstat (limited to 'src/types/history.ts')
-rw-r--r--src/types/history.ts14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/types/history.ts b/src/types/history.ts
index 30fe8e529..f4a1d0631 100644
--- a/src/types/history.ts
+++ b/src/types/history.ts
@@ -348,19 +348,7 @@ export interface HistoryFundsDepositedToSelfEvent {
* converted funds in these denominations to new funds.
*/
export interface HistoryFundsRecoupedEvent {
- type: HistoryEventType.FundsDepositedToSelf;
-
- exchangeBaseUrl: string;
-
- /**
- * Amount that the wallet managed to recover.
- */
- amountRecouped: string;
-
- /**
- * Amount that was lost due to fees.
- */
- amountLost: string;
+ type: HistoryEventType.FundsRecouped;
}
/**