@leofcoin/chain 1.7.19 → 1.7.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/exports/browser/chain.js +656 -674
- package/exports/chain.js +0 -1
- package/package.json +1 -1
package/exports/chain.js
CHANGED
|
@@ -1549,7 +1549,6 @@ class Chain extends VersionControl {
|
|
|
1549
1549
|
// @ts-ignore
|
|
1550
1550
|
.map(async (hash) => {
|
|
1551
1551
|
const data = await peernet.get(hash, 'transaction');
|
|
1552
|
-
transactionStore.put(hash, data);
|
|
1553
1552
|
(await transactionPoolStore.has(hash)) && (await transactionPoolStore.delete(hash));
|
|
1554
1553
|
return new TransactionMessage(data);
|
|
1555
1554
|
}));
|