forked from lthn/blockchain
more fixes for performance tests
This commit is contained in:
parent
edcd9c85f1
commit
43ea2cb9db
2 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@ public:
|
|||
m_alice.generate();
|
||||
|
||||
std::vector<tx_destination_entry> destinations;
|
||||
destinations.push_back(tx_destination_entry(this->m_source_amount, m_alice.get_keys().m_account_address));
|
||||
destinations.push_back(tx_destination_entry(this->m_source_amount, m_alice.get_keys().account_address));
|
||||
|
||||
if (!construct_tx(this->m_miners[this->real_source_idx].get_keys(), this->m_sources, destinations, m_tx, 0))
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ public:
|
|||
|
||||
for (size_t i = 0; i < out_count; ++i)
|
||||
{
|
||||
m_destinations.push_back(tx_destination_entry(this->m_source_amount / out_count, m_alice.get_keys().m_account_address));
|
||||
m_destinations.push_back(tx_destination_entry(this->m_source_amount / out_count, m_alice.get_keys().account_address));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue