Procházet zdrojové kódy

drk: Add TODO about tx inspection

x před 6 měsíci
rodič
revize
8e544e7cad
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      bin/drk/src/main.rs

+ 2 - 0
bin/drk/src/main.rs

@@ -2121,6 +2121,8 @@ async fn realmain(args: Args, ex: ExecutorPtr) -> Result<()> {
         Subcmd::Inspect => {
             let tx = parse_tx_from_stdin().await?;
 
+            // TODO: Contract ID shows here as hex, should be base58.
+            // Print manually and make it nice and informational.
             println!("{tx:#?}");
 
             Ok(())