diff --git a/new-lamassu-admin/src/pages/Wizard/components/Wallet/AllSet.js b/new-lamassu-admin/src/pages/Wizard/components/Wallet/AllSet.js index f2653ffd..ae891826 100644 --- a/new-lamassu-admin/src/pages/Wizard/components/Wallet/AllSet.js +++ b/new-lamassu-admin/src/pages/Wizard/components/Wallet/AllSet.js @@ -70,6 +70,20 @@ const AllSet = ({ data: currentData, doContinue }) => { return saveConfig({ variables: { config } }) } + const presentableData = R.pipe( + R.omit(['coin', 'zeroConf', 'zeroConfLimit']), + toNamespace(coin) + )(currentData) + + const presentableElements = R.filter( + R.pipe( + R.prop('name'), + R.flip(R.includes)(['zeroConf', 'zeroConfLimit']), + R.not() + ), + getElements(cryptoCurrencies, accountsConfig, null, true) + ) + return ( <>