mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
07adba5926
Send the entire transactions array to the frontend rather than currentNetworkTxList and unapprovedTxs.
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
import { isEqual } from 'lodash';
|
|
import { createSelectorCreator, defaultMemoize } from 'reselect';
|
|
|
|
export const createDeepEqualSelector = createSelectorCreator(
|
|
defaultMemoize,
|
|
isEqual,
|
|
);
|