ellabaron
ellabaron
1. In config.py, SIGHASH_ANYONECANPAY should be set to 0x80, not to 80. 2. sighash_type is not properly reflected in the signature. The last byte in the signature is always set...
When you call RFC6979() function in USE_FASTECDSA case, you need to pass it additional argument True for prehashed parameter. This means that the message that you pass it to generate...
I've created the following code: `mnemonic = Mnemonic(args.language)` `words = mnemonic.generate(args.strength)` `entropy = mnemonic.to_entropy(words)` Both language and strength are passed from the command line arguments. `to_entropy()` method fails with the...