public DbIterator<Account.AccountAsset> getAccounts(int height, int from, int to) { if (height < 0) { return getAccounts(from, to); } return Account.getAssetAccounts(this.assetId, height, from, to); }
public DbIterator<Account.AccountAsset> getAccounts(int from, int to) { return Account.getAssetAccounts(this.assetId, from, to); }