blob: 32f573850568bebe283999ad24ac506ce269409a (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
package objectid
// EmptyTree returns the object ID of an empty tree ("tree 0\x00") for this
// algorithm.
func (algo Algorithm) EmptyTree() ObjectID {
return algo.info().emptyTree
}
|