aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/big.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-04-27 22:50:44 +0800
committerobscuren <geffobscura@gmail.com>2014-04-27 22:53:35 +0800
commit16e52327a4baa5547c38965fce53b3ff40b98173 (patch)
tree27fb43512c802e2c3c0fe8bd8d97a55aa2499758 /ethutil/big.go
parent05d2d8f27d0bea5b20be9bc3b4a259a12298ecab (diff)
downloadgo-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar.gz
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar.bz2
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar.lz
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar.xz
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.tar.zst
go-tangerine-16e52327a4baa5547c38965fce53b3ff40b98173.zip
Upped version number
Diffstat (limited to 'ethutil/big.go')
-rw-r--r--ethutil/big.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/ethutil/big.go b/ethutil/big.go
index 1a3902fa3..c0488a71f 100644
--- a/ethutil/big.go
+++ b/ethutil/big.go
@@ -50,3 +50,11 @@ func BigCopy(src *big.Int) (ret *big.Int) {
return
}
+
+func BigMax(x, y *big.Int) *big.Int {
+ if x.Cmp(y) <= 0 {
+ return x
+ }
+
+ return y
+}