fix: remove required payment type from sign msg

This commit is contained in:
fbwoolf
2023-06-29 08:19:58 -05:00
committed by Fara Woolf
parent 648af7cc8a
commit d46b310884

View File

@@ -18,7 +18,7 @@ const rpcSignMessageParamsSchema = yup.object().shape({
account: accountSchema,
message: yup.string().required(),
network: yup.string().oneOf(Object.values(WalletDefaultNetworkConfigurationIds)),
paymentType: yup.string<PaymentTypes>().required(),
paymentType: yup.string<PaymentTypes>(),
});
// TODO: Import param types from btckit when updated