Adding universal link

This commit is contained in:
Richard Ramos 2018-10-08 21:52:45 -04:00
parent e54a055596
commit fa00e9423b
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(el + "\n");
stream1.write("https://get.status.im/browse/cryptolife.status.im/%3f" + el + "\n");
})
stream1.end();
});