File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,17 @@ impl ClnNode {
4949 . identity ( Identity :: from_pem (
5050 reader ( & connection. client_cert ) . await . map_err ( |err| {
5151 LightningError :: ConnectionError ( format ! (
52- "Cannot loads client certificate: {}" ,
52+ "Cannot load client certificate: {}" ,
5353 err
5454 ) )
5555 } ) ?,
5656 reader ( & connection. client_key ) . await . map_err ( |err| {
57- LightningError :: ConnectionError ( format ! ( "Cannot loads client key: {}" , err) )
57+ LightningError :: ConnectionError ( format ! ( "Cannot load client key: {}" , err) )
5858 } ) ?,
5959 ) )
6060 . ca_certificate ( Certificate :: from_pem (
6161 reader ( & connection. ca_cert ) . await . map_err ( |err| {
62- LightningError :: ConnectionError ( format ! ( "Cannot loads CA certificate: {}" , err) )
62+ LightningError :: ConnectionError ( format ! ( "Cannot load CA certificate: {}" , err) )
6363 } ) ?,
6464 ) ) ;
6565
You can’t perform that action at this time.
0 commit comments