Skip to content

Commit c2975d8

Browse files
committed
txins: rename src/prevouts into src/txins
Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
1 parent 2f2b97d commit c2975d8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub mod error;
99

1010
pub mod scripts;
1111

12-
pub mod prevouts;
12+
pub mod txins;
1313

1414
pub mod txouts;
1515

src/transactions.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Typesafe routines to create bare revault transactions.
44
5-
use crate::{error::Error, prevouts::*, txouts::*};
5+
use crate::{error::Error, txins::*, txouts::*};
66

77
use bitcoin::{
88
consensus::encode::{Encodable, Error as EncodeError},
@@ -514,7 +514,7 @@ mod tests {
514514
RevaultTransaction, SpendTransaction, UnvaultEmergencyTransaction, UnvaultTransaction,
515515
VaultTransaction, RBF_SEQUENCE,
516516
};
517-
use crate::{prevouts::*, scripts::*, txouts::*};
517+
use crate::{scripts::*, txins::*, txouts::*};
518518

519519
use std::str::FromStr;
520520

File renamed without changes.

0 commit comments

Comments
 (0)