We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4878951 commit 1a64496Copy full SHA for 1a64496
lightning-block-sync/src/convert.rs
@@ -181,6 +181,8 @@ impl TryInto<Txid> for JsonResponse {
181
}
182
183
184
+/// Converts a JSON value into a transaction. WATCH OUT! this cannot be used for zero-input transactions
185
+/// (e.g. createrawtransaction). See https://github.com/rust-bitcoin/rust-bitcoincore-rpc/issues/197
186
impl TryInto<Transaction> for JsonResponse {
187
type Error = std::io::Error;
188
fn try_into(self) -> std::io::Result<Transaction> {
0 commit comments