FileLedgerStore constructor

FileLedgerStore(
  1. 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);
}