forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
426 B
27 lines
426 B
11 years ago
|
package ethtrie
|
||
11 years ago
|
|
||
11 years ago
|
import ()
|
||
11 years ago
|
|
||
|
// Helper function for comparing slices
|
||
|
func CompareIntSlice(a, b []int) bool {
|
||
|
if len(a) != len(b) {
|
||
|
return false
|
||
|
}
|
||
|
for i, v := range a {
|
||
|
if v != b[i] {
|
||
|
return false
|
||
|
}
|
||
|
}
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
// Returns the amount of nibbles that match each other from 0 ...
|
||
|
func MatchingNibbleLength(a, b []int) int {
|
||
|
i := 0
|
||
|
for CompareIntSlice(a[:i+1], b[:i+1]) && i < len(b) {
|
||
|
i += 1
|
||
|
}
|
||
|
|
||
|
return i
|
||
|
}
|