Currently solely used for single signer change outputs, intended to be 
used for funds into Serai and multisig change outputs (dependent on #2).

Also cleans the file layout, makes scanning a bit more robust, doesn't 
return outputs of amount 0, and shuffles outputs.
This commit is contained in:
Luke Parker
2022-05-20 01:03:54 -04:00
parent 8945b50988
commit 573f847a9b
4 changed files with 229 additions and 142 deletions

View File

@@ -11,8 +11,9 @@ lazy_static = "1"
thiserror = "1"
rand_core = "0.6"
rand_distr = "0.4"
rand_chacha = { version = "0.3", optional = true }
rand = "0.8"
rand_distr = "0.4"
tiny-keccak = { version = "2", features = ["keccak"] }
blake2 = "0.10"
@@ -39,6 +40,4 @@ experimental = []
multisig = ["ff", "group", "rand_chacha", "transcript", "frost", "dalek-ff-group"]
[dev-dependencies]
rand = "0.8"
tokio = { version = "1", features = ["full"] }