aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/big.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil/big.go')
-rw-r--r--ethutil/big.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/ethutil/big.go b/ethutil/big.go
index 979078bef..c41d63add 100644
--- a/ethutil/big.go
+++ b/ethutil/big.go
@@ -35,3 +35,9 @@ func BigD(data []byte) *big.Int {
return n
}
+
+func BigToBytes(num *big.Int, base int) []byte {
+ ret := make([]byte, base/8)
+
+ return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
+}