FileLedgerStore constructor
FileLedgerStore(
- String path
Creates a store rooted at path (the node's data directory).
Implementation
FileLedgerStore(String path)
: directory = Directory(p.join(path, 'blueprints')) {
directory.createSync(recursive: true);
}