fix compilation errors from merge

This commit is contained in:
realbigsean
2022-12-23 10:27:01 -05:00
parent f45d117e73
commit 5db0a88d4f
4 changed files with 9 additions and 11 deletions

View File

@@ -719,7 +719,10 @@ fn context_bytes_to_fork_name(
let encoded = hex::encode(context_bytes);
RPCError::ErrorResponse(
RPCResponseErrorCode::InvalidRequest,
format!("Context bytes {} do not correspond to a valid fork", encoded),
format!(
"Context bytes {} do not correspond to a valid fork",
encoded
),
)
})
}