Remove unused utlity function

This commit is contained in:
Austin Roberts 2024-01-22 14:24:15 -06:00
parent ffa8007e91
commit 52cd407f8b

View File

@ -1,13 +0,0 @@
package types
import (
"math/big"
)
// BigMin returns the smaller of x or y.
func BigMin(x, y *big.Int) *big.Int {
if x.Cmp(y) > 0 {
return y
}
return x
}