Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! blockchain: implement third fork
The `//` operator in Python was used for integer division while it actually performs a floor division. This is only an issue for negative numbers, e.g. >>> 3.2 // 2 1.0 >>> -3.2 // 2 -2.0 # should be -1.0
- Loading branch information