mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-01 00:31:21 +00:00
8 lines
124 B
Go
8 lines
124 B
Go
|
package state
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
func cleanUpTrailingZeroes(value []byte) []byte {
|
||
|
return bytes.TrimLeft(value[:], "\x00")
|
||
|
}
|