Escanor Liones

Results 11 issues of Escanor Liones

So, build designed and tested for windows....any plans to make this available for Linux users out of the box? We code too. :P

The function/method has been left empty here, without any comment or docstring. This can cause confusion later on why this was left empty. 1. If it is intentionally left blank,...

The method doesn't use its bound instance. Decorate this method with @staticmethod decorator, so that Python does not have to instantiate a bound method for every instance of this class...

…block (64 bytes) and added additional entropy from RDSEED on CPUs that support it. To compile it a flag is needed to enable the RDSEED instruction. I compiled with ```...

enhancement

Backport from 1.21-dev. The entropy whence the private keys for wallets are generated needs to be cryptographically secure not merely computationally secure. Some distros handle RNGs differently, some of that...

enhancement

#2283 Suggested fix. However, it will disconnect outbound connection even if the invalid header comes from a compact block, which under BIP 152 there are scenarios where that is allowed....

bug
do not merge yet
backport

Nested if statements can be collapsed into a single if statement by separating their condition using and operator. Merging collapsible if statements increases the code's readability. Exception: DeepSource would not...

It is unnecessary to use a comprehension just to loop over the iterable and create a list/set/dict out of it. Python has a specialized set of tools for this task:...

Comparisons to the singleton objects, like True, False, and None, should be done with identity, not equality. Use is or is not. Identity checks are faster than equality checks. Also,...

Could you add an interface to submit a number and its factors? There is a blockchain ([FACT0RN](https://fact0rn.io/)) that uses integer factorization as its proof of work and it would be...