update go-datastore to use []byte values instead of {}interface values
* Most of our datastores barf on non []byte values. * We have to have a bunch of "is this a []byte" checks. * Saves some allocations. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com> This commit was moved from ipfs/interface-go-ipfs-core@bb2d55c26ae125a50a6250df13479d70a84e4073 This commit was moved from ipfs/boxo@454f0f425c406d96427b7e0a262a33081c308dbf
Steven Allen committed
Aug 13, 2018 at 14:29 UTC
e1f39ec60e3ada6404a5d5681b872c0b483e7c1b
1 file changed
+1
-1
core/coreiface/path.go
+1
-1
@@ -1,7 +1,7 @@
1
package iface
2
3
import (
4
- ipfspath "gx/ipfs/QmTG5WFmAM4uAnqGskeAPijdpTmmNDLJNCQ71NqfdvC6hV/go-path"
4
+ ipfspath "gx/ipfs/QmV1W98rBAovVJGkeYHfqJ19JdT9dQbbWsCq9zPaMyrxYx/go-path"
5
6
cid "gx/ipfs/Qmdu2AYUV7yMoVBQPxXNfe7FJcdx16kYtsx6jAPKWQYF1y/go-cid"
7
)