You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
274 B
9 lines
274 B
|
|
|
|
var fs = require('fs');
|
|
|
|
var dataValid = JSON.parse(fs.readFileSync('test/data/base58_keys_valid.json'));
|
|
var dataInvalid = JSON.parse(fs.readFileSync('test/data/base58_keys_invalid.json'));
|
|
|
|
module.exports.dataValid = dataValid;
|
|
module.exports.dataInvalid = dataInvalid;
|
|
|