mirror of
https://github.com/PeernetOfficial/core.git
synced 2026-07-16 18:37:51 +01:00
14 lines
181 B
Go
14 lines
181 B
Go
package webapi
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
// Test function
|
|
func TestDecodeBlake3Hash(t *testing.T) {
|
|
hash, bool := DecodeBlake3Hash("")
|
|
fmt.Println(hash)
|
|
fmt.Println(bool)
|
|
}
|