Return txid from send

This commit is contained in:
Aditya Kulkarni
2019-10-18 12:38:28 -07:00
parent c34aba4ddd
commit 4518965a41
3 changed files with 14 additions and 3 deletions

View File

@@ -771,7 +771,7 @@ impl LightClient {
Ok(k) => k,
Err(e) => e,
},
Err(e) => format!("No Tx to broadcast. Error was: {}", e)
Err(e) => format!("Error: No Tx to broadcast. Error was: {}", e)
}
}
}