fix: remove allowTransactionBatching from being required

This commit is contained in:
Sérgio Salgado 2022-02-03 17:24:43 +00:00
parent c7a9cef998
commit ef6fccb862

View file

@ -33,7 +33,7 @@ const WalletSchema = Yup.object().shape({
const AdvancedWalletSchema = Yup.object().shape({
cryptoUnits: Yup.string().required(),
allowTransactionBatching: Yup.boolean().required()
allowTransactionBatching: Yup.boolean()
})
const getAdvancedWalletElements = (cryptoCurrencies, coinUtils, config) => {