Skip to content

Commit

Permalink
used std library Rc and Arc to fix test coverage CI/CD test
Browse files Browse the repository at this point in the history
  • Loading branch information
rockcoolsaint committed Jul 8, 2024
1 parent 1d69086 commit b231d43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bitcoin/src/crypto/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ use std::convert::TryFrom;
use hex::FromHex;
use internals::write_err;
use io::Write;
use rc::Rc;
use sync::Arc;
use std::Rc;
use std::Arc;

use crate::prelude::{DisplayHex, Vec};
use crate::script::PushBytes;
Expand Down

0 comments on commit b231d43

Please sign in to comment.