about summary refs log tree commit diff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index bcae21bf76..2391fd9e87 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -98,7 +98,10 @@ bool RemoteStore::hasSubstitutes(const Path & path)
 
 Hash RemoteStore::queryPathHash(const Path & path)
 {
-    throw Error("not implemented 3");
+    writeInt(wopQueryPathHash, to);
+    writeString(path, to);
+    string hash = readString(from);
+    return parseHash(htSHA256, hash);
 }