wallet-core: show instructed amount as raw amount for withdrawal
This commit is contained in:
parent
8d4a7d6103
commit
b52b074a8d
@ -333,6 +333,8 @@ export interface BackupWithdrawalGroup {
|
||||
*/
|
||||
raw_withdrawal_amount: BackupAmountString;
|
||||
|
||||
effective_withdrawal_amount: BackupAmountString;
|
||||
|
||||
/**
|
||||
* Restrict withdrawals from this reserve to this age.
|
||||
*/
|
||||
|
@ -1972,6 +1972,7 @@ export class WalletCli {
|
||||
...this.timetravelArgArr,
|
||||
"--wallet-db",
|
||||
this.dbfile,
|
||||
"advanced",
|
||||
"run-pending",
|
||||
],
|
||||
);
|
||||
|
@ -1356,11 +1356,6 @@ export interface WithdrawalGroupRecord {
|
||||
*/
|
||||
status: WithdrawalGroupStatus;
|
||||
|
||||
/**
|
||||
* Amount that was sent by the user to fund the reserve.
|
||||
*/
|
||||
instructedAmount: AmountJson;
|
||||
|
||||
/**
|
||||
* Wire information (as payto URI) for the bank account that
|
||||
* transferred funds for this reserve.
|
||||
@ -1374,12 +1369,36 @@ export interface WithdrawalGroupRecord {
|
||||
*/
|
||||
restrictAge?: number;
|
||||
|
||||
/**
|
||||
* Amount that was sent by the user to fund the reserve.
|
||||
*/
|
||||
instructedAmount: AmountJson;
|
||||
|
||||
/**
|
||||
* Amount that was observed when querying the reserve that
|
||||
* we are withdrawing from.
|
||||
*
|
||||
* Useful for diagnostics.
|
||||
*/
|
||||
reserveBalanceAmount?: AmountJson;
|
||||
|
||||
/**
|
||||
* Amount including fees (i.e. the amount subtracted from the
|
||||
* reserve to withdraw all coins in this withdrawal session).
|
||||
*
|
||||
* (Initial amount confirmed by the user, might differ with denomSel
|
||||
* on reselection.)
|
||||
*/
|
||||
rawWithdrawalAmount: AmountJson;
|
||||
|
||||
/**
|
||||
* Amount that will be added to the balance when the withdrawal succeeds.
|
||||
*
|
||||
* (Initial amount confirmed by the user, might differ with denomSel
|
||||
* on reselection.)
|
||||
*/
|
||||
effectiveWithdrawalAmount: AmountJson;
|
||||
|
||||
/**
|
||||
* Denominations selected for withdrawal.
|
||||
*/
|
||||
|
@ -166,6 +166,9 @@ export async function exportBackup(
|
||||
secret_seed: wg.secretSeed,
|
||||
exchange_base_url: wg.exchangeBaseUrl,
|
||||
instructed_amount: Amounts.stringify(wg.instructedAmount),
|
||||
effective_withdrawal_amount: Amounts.stringify(
|
||||
wg.effectiveWithdrawalAmount,
|
||||
),
|
||||
reserve_priv: wg.reservePriv,
|
||||
restrict_age: wg.restrictAge,
|
||||
// FIXME: proper status conversion!
|
||||
|
@ -556,6 +556,9 @@ export async function importBackup(
|
||||
rawWithdrawalAmount: Amounts.parseOrThrow(
|
||||
backupWg.raw_withdrawal_amount,
|
||||
),
|
||||
effectiveWithdrawalAmount: Amounts.parseOrThrow(
|
||||
backupWg.effective_withdrawal_amount,
|
||||
),
|
||||
reservePriv: backupWg.reserve_priv,
|
||||
reservePub,
|
||||
status: backupWg.timestamp_finish
|
||||
|
@ -379,7 +379,7 @@ function buildTransactionForPullPaymentCredit(
|
||||
return {
|
||||
type: TransactionType.PeerPullCredit,
|
||||
amountEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue),
|
||||
amountRaw: Amounts.stringify(wsr.rawWithdrawalAmount),
|
||||
amountRaw: Amounts.stringify(wsr.instructedAmount),
|
||||
exchangeBaseUrl: wsr.exchangeBaseUrl,
|
||||
pending: !wsr.timestampFinish,
|
||||
timestamp: wsr.timestampStart,
|
||||
@ -409,7 +409,7 @@ function buildTransactionForPushPaymentCredit(
|
||||
return {
|
||||
type: TransactionType.PeerPushCredit,
|
||||
amountEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue),
|
||||
amountRaw: Amounts.stringify(wsr.rawWithdrawalAmount),
|
||||
amountRaw: Amounts.stringify(wsr.instructedAmount),
|
||||
exchangeBaseUrl: wsr.exchangeBaseUrl,
|
||||
info: {
|
||||
expiration: wsr.wgInfo.contractTerms.purse_expiration,
|
||||
@ -436,7 +436,7 @@ function buildTransactionForBankIntegratedWithdraw(
|
||||
return {
|
||||
type: TransactionType.Withdrawal,
|
||||
amountEffective: Amounts.stringify(wsr.denomsSel.totalCoinValue),
|
||||
amountRaw: Amounts.stringify(wsr.rawWithdrawalAmount),
|
||||
amountRaw: Amounts.stringify(wsr.instructedAmount),
|
||||
withdrawalDetails: {
|
||||
type: WithdrawalType.TalerBankIntegrationApi,
|
||||
confirmed: wsr.wgInfo.bankInfo.timestampBankConfirmed ? true : false,
|
||||
@ -477,7 +477,7 @@ function buildTransactionForManualWithdraw(
|
||||
amountEffective: Amounts.stringify(
|
||||
withdrawalGroup.denomsSel.totalCoinValue,
|
||||
),
|
||||
amountRaw: Amounts.stringify(withdrawalGroup.rawWithdrawalAmount),
|
||||
amountRaw: Amounts.stringify(withdrawalGroup.instructedAmount),
|
||||
withdrawalDetails: {
|
||||
type: WithdrawalType.ManualTransfer,
|
||||
reservePub: withdrawalGroup.reservePub,
|
||||
|
@ -932,6 +932,7 @@ async function queryReserve(
|
||||
return;
|
||||
}
|
||||
wg.status = WithdrawalGroupStatus.Ready;
|
||||
wg.reserveBalanceAmount = Amounts.parse(result.response.balance);
|
||||
await tx.withdrawalGroups.put(wg);
|
||||
});
|
||||
|
||||
@ -1700,6 +1701,7 @@ export async function internalCreateWithdrawalGroup(
|
||||
instructedAmount: amount,
|
||||
timestampStart: now,
|
||||
rawWithdrawalAmount: initialDenomSel.totalWithdrawCost,
|
||||
effectiveWithdrawalAmount: initialDenomSel.totalCoinValue,
|
||||
secretSeed,
|
||||
reservePriv: reserveKeyPair.priv,
|
||||
reservePub: reserveKeyPair.pub,
|
||||
|
Loading…
Reference in New Issue
Block a user