You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The _LARGEST_HASH property on the Block-class doesn't work on Dart2 because integers have been limited to 64 bits. Potential replacement could be the new BigInt-class in Dart2. This may require refactoring.
The
_LARGEST_HASH
property on theBlock
-class doesn't work on Dart2 because integers have been limited to 64 bits. Potential replacement could be the newBigInt
-class in Dart2. This may require refactoring.static final BigInteger _LARGEST_HASH = (BigInteger.ONE << 256);
https://github.com/dartcoin/dart-bitcoin/blob/master/lib/src/core/block.dart#L73
The text was updated successfully, but these errors were encountered: