I get the error message 'go tool: no such tool "6a"' when I try to use
btcutil.DecodeAddr within an App Engine unit test. Any ideas why?
I am using go_appengine_sdk_darwin_amd64-1.9.0 and the following is an example of the code that won't compile or test using goapp -test.run="TestDecodeAddr"
func TestDecodeAddr(t *testing.T) {
_, err := btcutil.DecodeAddr("testaddr")
if err != nil {
t.Fatal(err)
}
}