You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constINVALID_CHAIN_ID_UTF8_MSG:&str = "chain_proposal_id's serde impls encode strings as `Vec<u8>`, panicking if non-UTF-8 is detected, so it should be safe to assume `chain_proposal_id` contains valid UTF-8 (probably a base16 string)";
254
+
250
255
fnfilter_excluded_proposals(
251
256
proposals:&HashMap<Hash,Proposal>,
252
257
excluded_proposals:&HashSet<String>,
253
258
) -> HashMap<Hash,Proposal>{
254
259
let predicate = |prop:&Proposal| {
255
-
let chain_proposal_id = String::from_utf8(prop.chain_proposal_id.clone()).unwrap();
260
+
let chain_proposal_id = String::from_utf8(prop.chain_proposal_id.clone())
0 commit comments