Files

13 lines
244 B
JavaScript
Raw Permalink Normal View History

2020-07-16 23:23:57 +02:00
const Flowee = require('../');
async function main() {
let flowee = new Flowee();
await flowee.connect();
let answer = await flowee.getBlockCount()
console.log(" Current blockCount: " + answer);
process.exit();
}
main();