How to use the fabric-network.FileSystemCheckpointer function in fabric-network

To help you get started, we’ve selected a few fabric-network examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github IBM-Blockchain / vehicle-manufacture / apps / rest_server / src / fabricproxy.ts View on Github external
factory: (channelName, listenerName, options) => {
                    return new FileSystemCheckpointer(channelName, listenerName, options);
                },
                options: {basePath: `checkpointers/${this.config.org}-checkpointer`}
github IBM-Blockchain / vehicle-manufacture / apps / common / src / fabricproxy.ts View on Github external
factory: (channelName, fListenerName, fOptions) => {
                    return new FileSystemCheckpointer(channelName, fListenerName, fOptions);
                },
                options: {basePath: `checkpointers/${this.config.org}-checkpointer`},