diff options
author | kumavis <aaron@kumavis.me> | 2018-05-24 13:32:33 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-05-24 13:32:33 +0800 |
commit | 22e59af741a43ab9a9dc8e96415788f681a8efda (patch) | |
tree | e02f623faeaa2d469d300f83e0d192116bfad8d0 /app/scripts/controllers | |
parent | eb2423799d472863b5a74443ac32b5c1d59ce9fc (diff) | |
download | dexon-wallet-22e59af741a43ab9a9dc8e96415788f681a8efda.tar.gz dexon-wallet-22e59af741a43ab9a9dc8e96415788f681a8efda.tar.zst dexon-wallet-22e59af741a43ab9a9dc8e96415788f681a8efda.zip |
controllers - recent-blocks - ensure full blocks
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r-- | app/scripts/controllers/recent-blocks.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/controllers/recent-blocks.js b/app/scripts/controllers/recent-blocks.js index e0b5551d..21563866 100644 --- a/app/scripts/controllers/recent-blocks.js +++ b/app/scripts/controllers/recent-blocks.js @@ -57,7 +57,7 @@ class RecentBlocksController { */ async processBlock (newBlockNumberHex) { const newBlockNumber = Number.parseInt(newBlockNumberHex, 16) - const newBlock = await this.getBlockByNumber(newBlockNumber) + const newBlock = await this.getBlockByNumber(newBlockNumber, true) const block = this.mapTransactionsToPrices(newBlock) @@ -128,7 +128,7 @@ class RecentBlocksController { const targetBlockNumbers = Array(blocksToFetch).fill().map((_, index) => prevBlockNumber - index) await Promise.all(targetBlockNumbers.map(async (targetBlockNumber) => { try { - const newBlock = await this.getBlockByNumber(targetBlockNumber) + const newBlock = await this.getBlockByNumber(targetBlockNumber, true) if (newBlock) { this.backfillBlock(newBlock) |