Updates line 304: ``` let db_path = format!("{}/{}", expand_path(&args.database)?.to_str().unwrap(), args.chain); ``` to: ``` let db_path = Path::new(expand_path(&args.database)?.to_str().unwrap()).join(args.chain.clone()); ```