diff --git a/cli/server/dump.go b/cli/server/dump.go index 233684985..e6084a9ee 100644 --- a/cli/server/dump.go +++ b/cli/server/dump.go @@ -81,7 +81,7 @@ func batchToMap(index uint32, batch *storage.MemBatch) blockDump { ops = append(ops, storageOp{ State: op, Key: hex.EncodeToString(key), - Value: "00" + hex.EncodeToString(batch.Put[i].Value), + Value: hex.EncodeToString(batch.Put[i].Value), }) }