We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make sure string arg + enum args both work for:
// initWallet('mnemonic', ''); // initWallet('mnemonic', false); // initWallet('inkey') // connectWallet('inkey'); // works // connectWallet('inkey', ''); // works // connectWallet('inkey', ''); // should not work... // connectWallet('defly') // connectWallet(WALLET_ID.INKEY, {config: { src: '' }}); // connectWallet(WALLET_ID.MNEMONIC, false); // connectWallet(WALLET_ID.MNEMONIC, '123 456'); // connectWallet(WALLET_ID.MNEMONIC); // works but shouldnt really
The text was updated successfully, but these errors were encountered:
No branches or pull requests
make sure string arg + enum args both work for:
The text was updated successfully, but these errors were encountered: