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 14a0b00 commit eda0d25Copy full SHA for eda0d25
src/blockdata/witness.rs
@@ -3,12 +3,13 @@
3
//! This module contains the [`Witness`] struct and related methods to operate on it
4
//!
5
6
+use secp256k1::ecdsa;
7
+
8
use crate::blockdata::transaction::EcdsaSighashType;
9
use crate::consensus::encode::{Error, MAX_VEC_SIZE};
10
use crate::consensus::{Decodable, Encodable, WriteExt};
11
use crate::io::{self, Read, Write};
12
use crate::prelude::*;
-use secp256k1::ecdsa;
13
use crate::VarInt;
14
15
/// The Witness is the data used to unlock bitcoins since the [segwit upgrade](https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki)
0 commit comments