Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olegnn committed Feb 3, 2025
1 parent 11bbbba commit bc8ad3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/dock-blockchain-modules/src/accumulator/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ export default class DockAccumulatorModule extends withParams(
}

async accumulatorHistory(accumulatorId) {
const { acc, updates } = this.accumulatorUpdates(accumulatorId);
const { acc, updates } = await this.dockOnly.accumulatorUpdates(
accumulatorId,
);

return new DockAccumulatorHistory(acc, updates);
}
Expand Down

0 comments on commit bc8ad3b

Please sign in to comment.