fix Transaction type

This commit is contained in:
jejolare 2025-02-28 11:04:45 +07:00
parent 8f6c760122
commit ae446d7e1a

View file

@ -23,7 +23,7 @@ export interface Transaction {
comment: string;
fee: string;
isInitiator: boolean;
transfers: Transfer[];
subtransfers: Transfer[];
}
export interface Wallet {