Skip to content

Commit

Permalink
Merge remote-tracking branch 'pokt/main' into issues/322/proof-of-con…
Browse files Browse the repository at this point in the history
…cept

* pokt/main:
  Reply to red0ne's comments's in #501
  [Docs] Added QuickStart video (#522)
  [Genesis Config] Set MaxValidators to 1 (#520)
  [Docs] Update `Quickstart` guide to onboard new devs (#501)
  [Code Health] chore: cleanup localnet testutils (#515)
  Zero retryLimit Support in ReplayClient (#442)
  • Loading branch information
bryanchriswhite committed May 10, 2024
2 parents 65819f0 + cb596fd commit 6636cd5
Show file tree
Hide file tree
Showing 48 changed files with 942 additions and 192 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,7 @@ summary.html
# Quickstart helpers
shannon_appgate_config.yaml
shannon_app_config.yaml
shannon_relayminer_config.yaml
shannon_supplier_config.yaml

gentx-*.json
gentx-*.json
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ todo_count: ## Print a count of all the TODOs in the project

.PHONY: todo_this_commit
todo_this_commit: ## List all the TODOs needed to be done in this commit
grep --exclude-dir={.git,vendor,.vscode} --exclude=Makefile -r -e "TODO_IN_THIS_"
grep -n --exclude-dir={.git,vendor,.vscode,.idea} --exclude={Makefile,reviewdog.yml} -r -e "TODO_IN_THIS_"

####################
### Gateways ###
Expand Down
4 changes: 4 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ genesis:
staking:
params:
bond_denom: upokt
# TODO_BLOCKER(@Olshansk): Figure out what this should be on Shannon
# re-genesis. We're setting it to 1 for Alpha TestNet #1 so Grove
# maintains the only validator until Alpha TestNet #2.
max_validators: 1
crisis:
constant_fee:
amount: "10000"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 3
title: Code Review Guidelines
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
sidebar_position: 3
title: Developer Tips
sidebar_position: 2
title: Debugging Tips
---

# Developer Tips <!-- omit in toc -->
# Debugging Tips <!-- omit in toc -->

:::note
This is a living document and will be updated as the ecosystem matures & grows.
Expand All @@ -14,6 +14,8 @@ If you have a tip you'd like to share with others, please open a PR to add it he
- [`itest` - Investigating Flaky Tests](#itest---investigating-flaky-tests)
- [`itest` Usage](#itest-usage)
- [`itest` Example](#itest-example)
- [TODO: pprof](#todo-pprof)
- [TODO: dlv](#todo-dlv)

## `itest` - Investigating Flaky Tests

Expand All @@ -36,3 +38,7 @@ test in the `pkg/client/tx` 50 times in total (5 consecutive tests over 10 runs)
```bash
make itest 5 10 ./pkg/client/tx/... -- -run TxClient_SignAndBroadcast_Succeeds
```

### TODO: pprof

### TODO: dlv
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6636cd5

Please sign in to comment.