-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
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
Testing Support bech32 encoding #1654
Conversation
[ "Usage: key root [--wallet-style WALLET_STYLE] MNEMONIC_WORD..." | ||
, " [--encoding KEY-ENCODING]" | ||
[ "Usage: key root [--wallet-style WALLET_STYLE]" | ||
, " [--encoding KEY-ENCODING] MNEMONIC_WORD..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This just makes me realize: the mnemonic words should also probably be read from stdin instead of passed as argument!
bors r+ |
1654: Testing Support bech32 encoding r=KtorZ a=piotr-iohk # Issue Number #1603 # Overview - 00306f0 Polish key CLI help - 285add3 Additional integration test for inspecting bech32 result # Comments Before: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] MNEMONIC_WORD... [--encoding KEY-ENCODING] Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) ``` After: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] [--encoding KEY-ENCODING] MNEMONIC_WORD... Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) --encoding KEY-ENCODING Either 'hex' or 'bech32' (default: hex) ``` Also updated: - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-command-line-interface#key-root - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-Command-Line-Interface-(cardano-wallet-byron)#key-root Co-authored-by: Piotr Stachyra <[email protected]>
Build failed |
hydra failed:
Another occurence of -> #1644 |
bors r+ |
1654: Testing Support bech32 encoding r=piotr-iohk a=piotr-iohk # Issue Number #1603 # Overview - 00306f0 Polish key CLI help - 285add3 Additional integration test for inspecting bech32 result # Comments Before: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] MNEMONIC_WORD... [--encoding KEY-ENCODING] Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) ``` After: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] [--encoding KEY-ENCODING] MNEMONIC_WORD... Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) --encoding KEY-ENCODING Either 'hex' or 'bech32' (default: hex) ``` Also updated: - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-command-line-interface#key-root - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-Command-Line-Interface-(cardano-wallet-byron)#key-root Co-authored-by: Piotr Stachyra <[email protected]>
Build failed |
@piotr-iohk this is going to be "annoying". Hydra caches the build result, so it won't re-run the test suite to retry the flaky test. |
285add3
to
2ce83c5
Compare
Btw. I don't think the test that is flaky, I was able to reproduce the problem manually today -> #1644 (comment). |
bors r+ |
1654: Testing Support bech32 encoding r=piotr-iohk a=piotr-iohk # Issue Number #1603 # Overview - 00306f0 Polish key CLI help - 285add3 Additional integration test for inspecting bech32 result # Comments Before: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] MNEMONIC_WORD... [--encoding KEY-ENCODING] Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) ``` After: ``` $ cardano-wallet-jormungandr key root Usage: cardano-wallet-jormungandr key root [--wallet-style WALLET_STYLE] [--encoding KEY-ENCODING] MNEMONIC_WORD... Extract root extended private key from a mnemonic sentence. Available options: -h,--help Show this help text --wallet-style WALLET_STYLE Any of the following (default: icarus) icarus (15 mnemonic words) trezor (12, 15, 18, 21 or 24 mnemonic words) ledger (12, 15, 18, 21 or 24 mnemonic words) --encoding KEY-ENCODING Either 'hex' or 'bech32' (default: hex) ``` Also updated: - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-command-line-interface#key-root - https://github.com/input-output-hk/cardano-wallet/wiki/Wallet-Command-Line-Interface-(cardano-wallet-byron)#key-root Co-authored-by: Piotr Stachyra <[email protected]>
Build failed |
Issue Number
#1603
Overview
00306f0
Polish key CLI help
285add3
Additional integration test for inspecting bech32 result
Comments
Before:
After:
Also updated: