This commit is contained in:
Sean Darcy 2021-12-02 11:58:12 +11:00
parent e98ade5c0f
commit ae61454692
4 changed files with 4 additions and 4 deletions

View File

@ -87,7 +87,7 @@ namespace wallet
if (tx_dict.key() != "tx")
return;
tx.tx = wallet2½::tx_from_blob(tx_dict.consume_string_view());
tx.tx = wallet25::tx_from_blob(tx_dict.consume_string_view());
if (not tx_dict.is_finished())
return;

View File

@ -94,7 +94,7 @@ namespace wallet
unsigned int i,
rct::key& mask)
{
return wallet2½::output_amount(rv, derivation, i, mask, key_device);
return wallet25::output_amount(rv, derivation, i, mask, key_device);
}
} // namespace wallet

View File

@ -3,7 +3,7 @@
#include <ringct/rctSigs.h>
#include <cryptonote_basic/cryptonote_format_utils.h>
namespace wallet2½
namespace wallet25
{
// TODO: copied from wallet2 for now, so to not redo crypto stuff just yet.
//

View File

@ -5,7 +5,7 @@
#include <device/device.hpp>
#include <cryptonote_basic/cryptonote_basic.h>
namespace wallet2½
namespace wallet25
{
uint64_t
output_amount(