(self, node_directory: str, testname: str, node_id: int)
| 111 | pass |
| 112 | |
| 113 | def get_db(self, node_directory: str, testname: str, node_id: int) -> Sqlite3Db: |
| 114 | path = os.path.join( |
| 115 | node_directory, |
| 116 | 'lightningd.sqlite3' |
| 117 | ) |
| 118 | return Sqlite3Db(path) |
| 119 | |
| 120 | def stop(self) -> None: |
| 121 | pass |