Beispiel #1
0
 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);
 }
Beispiel #2
0
 public DbIterator<Account.AccountAsset> getAccounts(int from, int to) {
   return Account.getAssetAccounts(this.assetId, from, to);
 }