QuincySx / BlockchainWallet-Crypto

比特币、以太坊公私钥生成以及签名,长时间不维护可移步 https://github.com/QuincySx/ChainWallet
GNU General Public License v3.0
3 stars 1 forks source link

BTC测试私钥恢复会生成正式的地址 #12

Closed zdyszm closed 6 years ago

zdyszm commented 6 years ago

HI: 用https://www.bitaddress.org/?testnet=true网站生产的私钥 使用BitCoinECKeyPair parseWIF恢复地址的时候 : (decode[0] == (byte) TEST_NET_PRIVATE_KEY_PREFIX 这个判断有问题。 我改为了这样才可以: int test = decode[0] & 0xFF; if ( test == TEST_NET_PRIVATE_KEY_PREFIX)

QuincySx commented 6 years ago

谢谢反馈