Use historical price for older blocks and transactions

This commit is contained in:
nymkappa
2023-02-21 12:36:43 +09:00
parent cfa5734f19
commit 72779c8244
16 changed files with 284 additions and 19 deletions

View File

@@ -1,3 +1,4 @@
import { Price } from '../services/price.service';
import { IChannel } from './node-api.interface';
export interface Transaction {
@@ -23,6 +24,7 @@ export interface Transaction {
_deduced?: boolean;
_outspends?: Outspend[];
_channels?: TransactionChannels;
price?: Price;
}
export interface TransactionChannels {