UNPKG

280 BJavaScriptView Raw
1var fs = require('fs')
2 , path = require('path')
3
4module.exports = function (options) {
5 var inPath = path.join(options.parent.wallet, 'imported_keys')
6 try {
7 var str = fs.readFileSync(inPath, {encoding: 'utf8'})
8 }
9 catch (e) {
10 return
11 }
12 console.log(str.trim())
13}
\No newline at end of file