Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/rs-platform-wallet-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ zeroize = { version = "1", features = ["derive"] }
[dev-dependencies]
tempfile = "3.8"
dpp = { path = "../rs-dpp", features = ["fixtures-and-mocks"] }
# test-utils unlocks the Address::dummy / Transaction::dummy fixtures
# used by the tx_decode tests.
dashcore = { workspace = true, features = ["test-utils"] }

[build-dependencies]
cbindgen = "0.27"
Expand Down
2 changes: 2 additions & 0 deletions packages/rs-platform-wallet-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ pub mod sign_with_mnemonic_resolver;
pub mod spv;
pub mod token_persistence;
pub mod tokens;
pub mod tx_decode;
pub mod types;
pub mod utils;
pub mod wallet;
Expand Down Expand Up @@ -130,6 +131,7 @@ pub use sign_with_mnemonic_resolver::*;
pub use spv::*;
pub use token_persistence::*;
pub use tokens::*;
pub use tx_decode::*;
pub use types::*;
pub use utils::*;
pub use wallet::*;
Expand Down
Loading
Loading