aboutsummaryrefslogtreecommitdiffstats
path: root/big.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-01-11 05:44:53 +0800
committerobscuren <geffobscura@gmail.com>2014-01-11 05:44:53 +0800
commit8bbf879cb31e9cb28700773ed788421f9935ac36 (patch)
treeea2ab662a0577aa6238b084eda7ec9644ee35995 /big.go
parentf6fa4f88797030b8e83066cb262a68958953974e (diff)
downloaddexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar.gz
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar.bz2
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar.lz
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar.xz
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.tar.zst
dexon-8bbf879cb31e9cb28700773ed788421f9935ac36.zip
Moving the ethgo to individual packages
Diffstat (limited to 'big.go')
-rw-r--r--big.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/big.go b/big.go
deleted file mode 100644
index b0fbcb64f..000000000
--- a/big.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package main
-
-import (
- "math/big"
-)
-
-/*
- * Returns the power of two integers
- */
-func BigPow(a,b int) *big.Int {
- c := new(big.Int)
- c.Exp(big.NewInt(int64(a)), big.NewInt(int64(b)), big.NewInt(0))
-
- return c
-}
-
-/*
- * Like big.NewInt(uint64); this takes a string instead.
- */
-func Big(num string) *big.Int {
- n := new(big.Int)
- n.SetString(num, 0)
-
- return n
-}
-
-/*
- * Like big.NewInt(uint64); this takes a byte buffer instead.
- */
-func BigD(data []byte) *big.Int {
- n := new(big.Int)
- n.SetBytes(data)
-
- return n
-}