CW-476 Only get Transactions of one Account on tx-history refresh (#1077)

This commit is contained in:
Konstantin Ullrich 2023-09-08 19:12:54 +02:00 committed by GitHub
parent 94f256997f
commit 4bcf6162f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -55,7 +55,7 @@ void refreshTransactions() => transactionsRefreshNative();
int countOfTransactions() => transactionsCountNative();
List<TransactionInfoRow> getAllTransations() {
List<TransactionInfoRow> getAllTransactions() {
final size = transactionsCountNative();
final transactionsPointer = transactionsGetAllNative();
final transactionsAddresses = transactionsPointer.asTypedList(size);