mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-06 11:25:02 +00:00
Fixed issue with casting to smaller byte array
This commit is contained in:
parent
e0b6a31613
commit
b15e03acd7
1 changed files with 4 additions and 0 deletions
|
|
@ -49,6 +49,10 @@ func BigD(data []byte) *big.Int {
|
|||
func BigToBytes(num *big.Int, base int) []byte {
|
||||
ret := make([]byte, base/8)
|
||||
|
||||
if len(num.Bytes()) > base/8 {
|
||||
return num.Bytes()
|
||||
}
|
||||
|
||||
return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue