diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-07-28 23:33:30 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-07-28 23:33:30 +0530 |
commit | 997445d42f6c804b7560a98e636f9f24496b4202 (patch) | |
tree | b53e26e34f33cff562f38e3ca3ce341e9f7e5fe6 | |
parent | 732e764b376dff6b0262b869b29dbdee0c455a0e (diff) |
consistent namingv0.7.1-dev.11
-rw-r--r-- | src/types/walletTypes.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types/walletTypes.ts b/src/types/walletTypes.ts index f37815333..a6bc26d88 100644 --- a/src/types/walletTypes.ts +++ b/src/types/walletTypes.ts @@ -489,12 +489,12 @@ export interface ManualWithdrawalDetails { /** * Amount that the user will transfer to the exchange. */ - rawAmount: AmountString; + amountRaw: AmountString; /** * Amount that will be added to the user's wallet balance. */ - effectiveAmount: AmountString; + amountEffective: AmountString; /** * Ways to pay the exchange. |