Commit bb362955 authored by Jeromy's avatar Jeromy Committed by Juan Batiz-Benet

writing files inside ipns works now! also implemented resolve cli command

parent 97e72e1a
......@@ -18,7 +18,7 @@ import (
// PutValue adds value corresponding to given Key.
// This is the top level "Store" operation of the DHT
func (dht *IpfsDHT) PutValue(ctx context.Context, key u.Key, value []byte) error {
log.Debug("[%s] PutValue %v %v", dht.self.ID.Pretty(), key.Pretty(), value)
log.Debug("PutValue %s %v", key.Pretty(), value)
err := dht.putLocal(key, value)
if err != nil {
return err
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment