Skip to content

Commit 4c5705b

Browse files
committed
Add WalletSimulator
1 parent d2d1079 commit 4c5705b

File tree

4 files changed

+1114
-3
lines changed

4 files changed

+1114
-3
lines changed

Cargo.lock

Lines changed: 117 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,15 @@ sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"], optional = t
3333
hex-literal = "0.4.1"
3434
serde_json = "1.0.115"
3535
serde = { version = "1.0.197", features = ["derive"] }
36+
futures-util = "0.3.30"
37+
futures-channel = "0.3.30"
38+
chia-traits = "0.7.0"
39+
chia-consensus = "0.7.0"
40+
indexmap = "2.2.6"
3641

3742
[dev-dependencies]
3843
bip39 = "2.0.0"
39-
chia-consensus = "0.7.0"
4044
once_cell = "1.19.0"
45+
rstest = "0.19.0"
4146
sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"] }
4247
tokio = { version = "1.33.0", features = ["full"] }

src/wallet.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
mod coin_selection;
22
mod required_signature;
33
mod signer;
4+
mod wallet_simulator;
45

56
pub use coin_selection::*;
67
pub use required_signature::*;
78
pub use signer::*;
9+
pub use wallet_simulator::*;

0 commit comments

Comments
 (0)