Skip to content

Commit

Permalink
Merge pull request #231 from xiaolou86/main
Browse files Browse the repository at this point in the history
fix a typo in logs
  • Loading branch information
swcurran authored Oct 27, 2023
2 parents df67899 + 2289a84 commit 0bf88df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indy-vdr-proxy/src/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ fn get_pool_status(state: Rc<RefCell<AppState>>, namespace: &str) -> VdrResult<R
let pool_states = &state.borrow().pool_states;
let opt_pool = &pool_states
.get(namespace)
.ok_or_else(|| err_msg(VdrErrorKind::Input, format!("Unkown ledger: {}", namespace)))?
.ok_or_else(|| err_msg(VdrErrorKind::Input, format!("Unknown ledger: {}", namespace)))?
.pool;
let (status, mt_root, mt_size, nodes) = if let Some(pool) = opt_pool {
let (mt_root, mt_size) = pool.get_merkle_tree_info();
Expand Down

0 comments on commit 0bf88df

Please sign in to comment.