diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-01 19:44:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-01 19:44:09 -0700 |
commit | f3fdc7ba600c65fdb05efc2fd5e9a651b4b9956e (patch) | |
tree | cf2522e44a56fb621a5e72364951ab7a1c29ef45 /adenosine-pds/src/bin | |
parent | 96c6dbc6c500a7ca3ebefe4ee4fb91fcb8c1713c (diff) | |
download | adenosine-f3fdc7ba600c65fdb05efc2fd5e9a651b4b9956e.tar.gz adenosine-f3fdc7ba600c65fdb05efc2fd5e9a651b4b9956e.zip |
pds: refactor repo code
Diffstat (limited to 'adenosine-pds/src/bin')
-rw-r--r-- | adenosine-pds/src/bin/adenosine-pds.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adenosine-pds/src/bin/adenosine-pds.rs b/adenosine-pds/src/bin/adenosine-pds.rs index b76d015..0159ab7 100644 --- a/adenosine-pds/src/bin/adenosine-pds.rs +++ b/adenosine-pds/src/bin/adenosine-pds.rs @@ -83,6 +83,6 @@ fn main() -> Result<()> { run_server(port, &opt.blockstore_db_path, &opt.atp_db_path) } Command::Import { car_path } => load_car_to_sqlite(&opt.blockstore_db_path, &car_path), - Command::Inspect {} => dump_mst_keys(&opt.blockstore_db_path), + Command::Inspect {} => mst::dump_mst_keys(&opt.blockstore_db_path), } } |