If you are a dataanalyst on blockchain or an AML expert on crypto, or you want to determine the risk of trading, this is a right artical for you, and please read CAREFULLY, and welcome feedback.
## Overview
Let’s have a quick glanch on the transaction count of each blockchain. There are [9...
# Root Cause
- The DCF token’s transfer mechanism enforces a forced investment. When the DCF token is sent to the the USDT-DCF liquidity pool, 5% of tokens are automatically swapped for USDT within the same pool and then added as liquidity to the USDT-DCT pool. This action triggers a swap in th...
...跟sources文件夹同级别的tests文件夹内。
```rust
public fun a_greater_than_b(a: u64, b: u64): bool{
a >= b
}
#[test]
public fun test_a_greater_than_b() {
let a = 10;
let b = 12;
assert!(!a_greater_than_b(a, b), 0);
}
```
assert即将被丢弃,建议...