Skip to content

Commit ff43588

Browse files
committed
Fix query path
1 parent fb4d1dc commit ff43588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/handler/vm_query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func GnoFuncsQueryHandler(cli client.ABCIClient) http.HandlerFunc {
5151
return func(w http.ResponseWriter, r *http.Request) {
5252
params := r.URL.Query()
5353
data := []byte(params.Get("realm"))
54-
res, err := cli.ABCIQuery("vm/qeval", data)
54+
res, err := cli.ABCIQuery("vm/qfuncs", data)
5555
if err != nil {
5656
writeError(w, err)
5757
return

0 commit comments

Comments
 (0)