mirror of
https://github.com/sparrowwallet/hummingbird.git
synced 2024-11-02 18:46:45 +00:00
Fixed typo in CryptoCoin info key according to:
https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-007-hdkey.md#cddl-for-coin-info This is not a big deal in order to convert from/to CBOR but in terms of different platform compatibility, this will cause issues when trying to import an UR string from a different source.
This commit is contained in:
parent
f35629374e
commit
286d9843df
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ public enum RegistryType {
|
|||
CRYPTO_BIP39("crypto-bip39", 301, CryptoBip39.class),
|
||||
CRYPTO_HDKEY("crypto-hdkey", 303, CryptoHDKey.class),
|
||||
CRYPTO_KEYPATH("crypto-keypath", 304, CryptoKeypath.class),
|
||||
CRYPTO_COIN_INFO("crypto-coin-info", 305, CryptoCoinInfo.class),
|
||||
CRYPTO_COIN_INFO("crypto-coininfo", 305, CryptoCoinInfo.class),
|
||||
CRYPTO_ECKEY("crypto-eckey", 306, CryptoECKey.class),
|
||||
CRYPTO_ADDRESS("crypto-address", 307, CryptoAddress.class),
|
||||
CRYPTO_OUTPUT("crypto-output", 308, CryptoOutput.class),
|
||||
|
|
Loading…
Reference in a new issue