use of com.hedera.services.ledger.backing.HashMapTestAccounts in project hedera-services by hashgraph.
the class LedgerImplBackingStoreTest method setUp.
@BeforeEach
void setUp() {
backingTestAccounts = new HashMapTestAccounts();
firstOrder = new TransactionalLedger<>(TestAccountProperty.class, TestAccount::new, backingTestAccounts, new ChangeSummaryManager<>());
}
Aggregations