@@ -121,15 +121,27 @@ func (handlers *Handlers) formatAmountAsJSON(amount coin.Amount, isFee bool) For
121
121
122
122
func (handlers * Handlers ) formatAmountAtTimeAsJSON (amount coin.Amount , timeStamp * time.Time ) FormattedAmount {
123
123
accountCoin := handlers .account .Coin ()
124
- conversions := map [string ]string {}
125
- estimated := false
126
- if timeStamp != nil {
124
+ rateUpdater := handlers .account .Config ().RateUpdater
125
+ formatBtcAsSat := util .FormatBtcAsSat (handlers .account .Config ().BtcCurrencyUnit )
126
+ var conversions map [string ]string
127
+ var estimated bool
128
+
129
+ if timeStamp == nil {
130
+ conversions = coin .Conversions (
131
+ amount ,
132
+ accountCoin ,
133
+ false ,
134
+ rateUpdater ,
135
+ formatBtcAsSat ,
136
+ )
137
+ estimated = true
138
+ } else {
127
139
conversions , estimated = coin .ConversionsAtTime (
128
140
amount ,
129
- handlers . account . Coin () ,
141
+ accountCoin ,
130
142
false ,
131
- handlers . account . Config (). RateUpdater ,
132
- util . FormatBtcAsSat ( handlers . account . Config (). BtcCurrencyUnit ) ,
143
+ rateUpdater ,
144
+ formatBtcAsSat ,
133
145
timeStamp ,
134
146
)
135
147
}
@@ -189,22 +201,18 @@ func (handlers *Handlers) getTxInfoJSON(txInfo *accounts.TransactionData, detail
189
201
feeString = handlers .formatAmountAsJSON (* txInfo .Fee , true )
190
202
}
191
203
amount := handlers .formatAmountAsJSON (txInfo .Amount , false )
192
- amountAtTime := FormattedAmount {
193
- Amount : amount .Amount ,
194
- Unit : amount .Unit ,
195
- }
196
204
var formattedTime * string
197
205
timestamp := txInfo .Timestamp
198
206
if timestamp == nil {
199
207
timestamp = txInfo .CreatedTimestamp
200
208
}
201
209
202
210
deductedAmountAtTime := handlers .formatAmountAtTimeAsJSON (txInfo .DeductedAmount , timestamp )
211
+ amountAtTime := handlers .formatAmountAtTimeAsJSON (txInfo .Amount , timestamp )
203
212
204
213
if timestamp != nil {
205
214
t := timestamp .Format (time .RFC3339 )
206
215
formattedTime = & t
207
- amountAtTime = handlers .formatAmountAtTimeAsJSON (txInfo .Amount , timestamp )
208
216
}
209
217
210
218
addresses := []string {}
0 commit comments