use of com.jd.blockchain.ledger.core.EventAccountSet in project jdchain-core by blockchain-jd-com.
the class LedgerQueryController method getUserEventAccountTotalCount.
@RequestMapping(method = RequestMethod.GET, path = GET_TOTAL_EVENT_ACCOUNT_COUNT)
@Override
public long getUserEventAccountTotalCount(@PathVariable(name = "ledgerHash") HashDigest ledgerHash) {
LedgerQuery ledger = ledgerService.getLedger(ledgerHash);
EventAccountSet eventAccountSet = ledger.getEventAccountSet(ledger.getLatestBlock());
return eventAccountSet.getTotal();
}
Aggregations