Merge pull request #44 from 67P/fix/proposal-loading

Fix proposal loading
This commit was merged in pull request #44.
This commit is contained in:
2018-04-10 17:48:53 +02:00
committed by GitHub
+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));
} }