added GUI yield support

This commit is contained in:
Some Random Crypto Guy
2024-07-31 12:39:06 +01:00
parent 301f2973d7
commit 8a82655fa4
8 changed files with 149 additions and 2 deletions
+8
View File
@@ -30,6 +30,7 @@
#include "wallet.h"
#include "yield_info.h"
#include "pending_transaction.h"
#include "unsigned_transaction.h"
#include "transaction_history.h"
@@ -2607,4 +2608,11 @@ uint64_t WalletImpl::getBytesSent()
return m_wallet->get_bytes_sent();
}
YieldInfo * WalletImpl::getYieldInfo()
{
auto yi = new YieldInfoImpl(*this);
bool ok = m_wallet->get_yield_summary_info(yi->m_burnt, yi->m_supply, yi->m_locked, yi->m_yield, yi->m_yield_per_stake, yi->m_num_entries, yi->m_payouts);
return yi;
}
} // namespace