mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Use SecretKey, PublicKey
This commit is contained in:
committed by
Nik Bougalis
parent
6fccd07479
commit
163e8eb8fc
@@ -147,10 +147,7 @@ class View_test
|
||||
testLedger()
|
||||
{
|
||||
using namespace jtx;
|
||||
Account const master("master");
|
||||
auto const ledger =
|
||||
std::make_shared<Ledger>(
|
||||
master.pk(), 1000000000);
|
||||
auto const ledger = Env::genesis();
|
||||
wipe(*ledger);
|
||||
ReadView& v = *ledger;
|
||||
succ(v, 0, boost::none);
|
||||
@@ -391,10 +388,7 @@ class View_test
|
||||
// ApplyView on that, then another ApplyView,
|
||||
// erase the item, apply.
|
||||
{
|
||||
Account const master("master");
|
||||
auto const ledger =
|
||||
std::make_shared<Ledger>(
|
||||
master.pk(), 1000000000);
|
||||
auto const ledger = Env::genesis();
|
||||
wipe(*ledger);
|
||||
ledger->rawInsert(sle(1));
|
||||
ReadView& v0 = *ledger;
|
||||
|
||||
Reference in New Issue
Block a user