Compare commits
No commits in common. "5dfbc0d96ff916ce722fa14b1d9d79ea06b5507c" and "06d3b5862c20ee99415c83268090e9321ebb2d75" have entirely different histories.
5dfbc0d96f
...
06d3b5862c
12
README.md
12
README.md
|
@ -25,7 +25,7 @@ This repository contains the base chain implementation that Colinear's compute m
|
|||
|
||||
### Build Requirements
|
||||
|
||||
- `ignite == 0.23.0` (see the [setup section](#setup))
|
||||
- `ignite` - [CLI Installation Guide](https://docs.ignite.com/guide/install)
|
||||
- `go >= 1.18`
|
||||
|
||||
### Integration Test Requirements
|
||||
|
@ -36,16 +36,6 @@ This repository contains the base chain implementation that Colinear's compute m
|
|||
|
||||
### Setup
|
||||
|
||||
To get ignite 0.23.0:
|
||||
|
||||
```
|
||||
curl https://get.ignite.com/cli@v0.23.0?type=script! | bash
|
||||
```
|
||||
|
||||
...or download it from the [GitHub release page](https://github.com/ignite/cli/releases/tag/v0.23.0).
|
||||
|
||||
Then, move it anywhere on `$PATH`.
|
||||
|
||||
To build the chain:
|
||||
|
||||
```
|
||||
|
|
|
@ -88,8 +88,6 @@ get_balance $BOB uusdc | expect_change 100 $before "Change in Bob's balance (fro
|
|||
# --- Test vesting payout after some wait time ---
|
||||
|
||||
before=$(get_balance $ALICE uusdc)
|
||||
remaining_before=$(colineard q colinearcore show-auction $(get_last_auction_index) \
|
||||
| jq -rM ".auction.remaining")
|
||||
|
||||
wait=5
|
||||
log_info "Waiting $wait s for vested funds to accumulate..."
|
||||
|
@ -101,7 +99,3 @@ colineard tx colinearcore claim-funds $(get_last_auction_index) \
|
|||
|
||||
get_balance $ALICE uusdc \
|
||||
| expect_increase $before "Alice's balance"
|
||||
|
||||
colineard q colinearcore show-auction $(get_last_auction_index) \
|
||||
| jq -rM ".auction.remaining" \
|
||||
| expect_decrease $remaining_before "Remaining claimable amount in auction"
|
||||
|
|
Loading…
Reference in New Issue