fix blacklist performance #107
2 changed files with 4 additions and 8 deletions
|
@ -13,10 +13,8 @@ export const selectBlacklistedOutpointMap = createSelector(
|
|||
outpoints
|
||||
? outpoints.reduce((acc, val) => {
|
||||
const outpoint = `${val.txid}:${val.nout}`;
|
||||
return {
|
||||
...acc,
|
||||
[outpoint]: 1,
|
||||
};
|
||||
acc[outpoint] = 1;
|
||||
return acc;
|
||||
}, {})
|
||||
: {}
|
||||
);
|
||||
|
|
|
@ -13,10 +13,8 @@ export const selectFilteredOutpointMap = createSelector(
|
|||
outpoints
|
||||
? outpoints.reduce((acc, val) => {
|
||||
const outpoint = `${val.txid}:${val.nout}`;
|
||||
return {
|
||||
...acc,
|
||||
[outpoint]: 1,
|
||||
};
|
||||
acc[outpoint] = 1;
|
||||
return acc;
|
||||
}, {})
|
||||
: {}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue