mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
fix(wallet): reconcile humanized wallet integration
This commit is contained in:
@@ -225,6 +225,16 @@ namespace {
|
||||
return read;
|
||||
}
|
||||
|
||||
void readPublicAccountsAsync(const QStringList& accountIds,
|
||||
AccountReadsCallback callback) override
|
||||
{
|
||||
QVector<WalletAccountRead> reads;
|
||||
reads.reserve(accountIds.size());
|
||||
for (const QString& accountId : accountIds)
|
||||
reads.append(readPublicAccount(accountId));
|
||||
callback(std::move(reads));
|
||||
}
|
||||
|
||||
WalletSubmission submitPublicTransaction(const WalletTransaction& transaction) override
|
||||
{
|
||||
++submissions;
|
||||
|
||||
Reference in New Issue
Block a user