Fix 'NaN' price for unconfirmed transaction since we have no block timestamp

This commit is contained in:
nymkappa 2023-02-22 20:42:32 +09:00
parent 00cbb5d0d8
commit 2246a6f3ce
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -93,6 +93,10 @@ export class PriceService {
* @param blockTimestamp
*/
getPriceForTimestamp(blockTimestamp: number): Price | null {
if (!blockTimestamp) {
return undefined;
}
const priceTimestamps = Object.keys(this.historicalPrice.prices);
priceTimestamps.push(Number.MAX_SAFE_INTEGER.toString());
priceTimestamps.sort().reverse();