12 lines
225 B
Go
12 lines
225 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package primitives
|
|
|
|
import "fmt"
|
|
|
|
func ExampleNewNameView() {
|
|
view := NewNameView()
|
|
ns, _ := view.GetNameStateSync(nil, Hash{})
|
|
fmt.Println(ns.NameHash == (Hash{}))
|
|
// Output: true
|
|
}
|