27f346d8f1
It was not meant to be used for these cases -- wasting resources creating and going through the cache for each simple direct access.
15 lines
478 B
JavaScript
15 lines
478 B
JavaScript
import { createSelector } from 'reselect';
|
|
|
|
export const selectState = (state) => state.blacklist || {};
|
|
|
|
export const selectBlackListedOutpoints = (state) => selectState(state).blackListedOutpoints;
|
|
|
|
export const selectBlacklistedOutpointMap = createSelector(selectBlackListedOutpoints, (outpoints) =>
|
|
outpoints
|
|
? outpoints.reduce((acc, val) => {
|
|
const outpoint = `${val.txid}:${val.nout}`;
|
|
acc[outpoint] = 1;
|
|
return acc;
|
|
}, {})
|
|
: {}
|
|
);
|