Skip to content

Commit

Permalink
Merge branch 'develop' into binds_android_ios
Browse files Browse the repository at this point in the history
daniellfalcao authored Aug 28, 2024
2 parents 6ca5243 + 29d7bc8 commit 81b6797
Showing 4 changed files with 11 additions and 23 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
[advisories]
vulnerability = "deny"
unmaintained = "deny"
notice = "deny"
unsound = "deny"
ignore = [

]

[bans]
multiple-versions = "deny"
deny = [
@@ -36,9 +27,6 @@ unknown-git = "deny"
github = ["klever-io"]

[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
copyleft = "deny"
confidence-threshold = 0.8
allow = [
"Apache-2.0",
2 changes: 1 addition & 1 deletion packages/kos-sdk/src/chains/ethereum/mod.rs
Original file line number Diff line number Diff line change
@@ -611,7 +611,7 @@ mod tests {
fn test_get_balance() {
let balance = tokio_test::block_on(ETH::get_balance(DEFAULT_ADDRESS, None, None)).unwrap();

assert!(balance.to_i64() > 100);
assert!(balance.to_i64() > 0);
}

#[test]
4 changes: 2 additions & 2 deletions packages/kos-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -12,10 +12,10 @@ rust-version = { workspace = true }
alloc = ["hex/alloc"]
serde = ["dep:serde", "alloc"]
std = ["alloc", "serde?/std"]
random = []
random = ["rand"]

[dependencies]
rand = { workspace = true }
rand = { workspace = true, optional = true }
coins-bip32 = { workspace = true }
coins-bip39 = { workspace = true }
secp256k1 = { workspace = true, features = ["recovery", "rand"] }

0 comments on commit 81b6797

Please sign in to comment.