Fix proposal loading #44

Merged
bumi merged 1 commits from fix/proposal-loading into master 2018-04-10 15:48:54 +00:00
+1 -1
View File
@@ -13,7 +13,7 @@ export default class Operator extends Base {
count = count.toNumber(); count = count.toNumber();
let proposals = []; let proposals = [];
for (let id = 0; id < count; id++) { for (let id = 1; id <= count; id++) {
proposals.push(this.getById(id)); proposals.push(this.getById(id));
} }