mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
|
const selectors = {
|
||
|
getCurrentBlockTime,
|
||
|
getBasicGasEstimateLoadingStatus,
|
||
|
}
|
||
|
|
||
|
module.exports = selectors
|
||
|
|
||
|
function getCurrentBlockTime (state) {
|
||
|
return state.gas.currentBlockTime
|
||
|
}
|
||
|
|
||
|
function getBasicGasEstimateLoadingStatus (state) {
|
||
|
return state.gas.basicEstimateIsLoading
|
||
|
}
|