From 619143156bfa9435275640e9ee63ed2ba07c52de Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 7 Nov 2016 23:01:57 -0800 Subject: [PATCH] migrate: logs. --- migrate/walletdb5to6.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrate/walletdb5to6.js b/migrate/walletdb5to6.js index cfb36dac..1fdd26be 100644 --- a/migrate/walletdb5to6.js +++ b/migrate/walletdb5to6.js @@ -124,7 +124,7 @@ var patchPathMaps = co(function* patchPathMaps() { item = items[i]; hash = item.key.toString('hex', 1); wids = parseWallets(item.value); - console.log('p[%s] -> varint(%d)', hash, wids.length); + console.log('p[%s] -> u32(%d)', hash, wids.length); batch.put(item.key, serializeWallets(wids)); } });