We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 662d507 commit 793ffe1Copy full SHA for 793ffe1
sugondat-shim/src/cmd/serve.rs
@@ -10,7 +10,10 @@ pub async fn run(params: Params) -> anyhow::Result<()> {
10
let listen_on = (params.dock.address.as_str(), params.dock.port);
11
let submit_key = crate::cmd::load_key(params.key_management)?;
12
if submit_key.is_none() {
13
- tracing::info!("no submit key provided, will not be able to submit blobs");
+ tracing::info!(
14
+ "no submit key provided, will not be able to submit blobs. \
15
+Pass --submit-dev-alice or --submit-private-key=<..> to fix."
16
+ );
17
}
18
let server = Server::builder().build(listen_on).await?;
19
let client = connect_client(¶ms.rpc.node_url).await?;
0 commit comments