diff --git a/ethutil/big.go b/ethutil/big.go
index c41d63add6fc428160996a7f9c41cb4358842bf5..1a3902fa3ebfd412cacd12393e0519544b774073 100644
--- a/ethutil/big.go
+++ b/ethutil/big.go
@@ -41,3 +41,12 @@ func BigToBytes(num *big.Int, base int) []byte {
 
 	return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
 }
+
+// Functions like the build in "copy" function
+// but works on big integers
+func BigCopy(src *big.Int) (ret *big.Int) {
+	ret = new(big.Int)
+	ret.Add(ret, src)
+
+	return
+}