diff --git a/README.md b/README.md index 14a676c..19431aa 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ u, _ := url.Parse("http://localhost:8000") config := agent.Config{ ClientConfig: &agent.ClientConfig{Host: u}, FetchRootKey: true, + DisableSignedQueryVerification: true, } ``` diff --git a/common/crust/result.go b/common/crust/result.go index b4ef18a..159a6ad 100644 --- a/common/crust/result.go +++ b/common/crust/result.go @@ -1,4 +1,4 @@ -package cmotoko +package crust // Result is a generic type that represents either success (Ok) or failure (Err). // It is used as the return type of functions which may fail.