Fix, wrong character

This commit is contained in:
Richard Ramos 2018-10-08 22:01:31 -04:00
parent fa00e9423b
commit 946ca0821a
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const merkleTree = new MerkleTree.default(elements);
const stream1 = fs.createWriteStream("codes.txt");
stream1.once('open', function(fd) {
codes.map(el => {
stream1.write("https://get.status.im/browse/cryptolife.status.im/%3f" + el + "\n");
stream1.write("https://get.status.im/browse/cryptolife.status.im/?" + el + "\n");
})
stream1.end();
});