Commit 2e6cf420 authored by Maran's avatar Maran

Fix BigMax to return the biggest number, not the smallest

parent 2995d6c2
...@@ -68,8 +68,8 @@ func BigCopy(src *big.Int) *big.Int { ...@@ -68,8 +68,8 @@ func BigCopy(src *big.Int) *big.Int {
// Returns the maximum size big integer // Returns the maximum size big integer
func BigMax(x, y *big.Int) *big.Int { func BigMax(x, y *big.Int) *big.Int {
if x.Cmp(y) <= 0 { if x.Cmp(y) <= 0 {
return x return y
} }
return y return x
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment