William Banfield
4a97aafcb5
lint fixes
2021-08-24 10:58:21 -04:00
William Banfield
4c5a5025c2
pr feedback and lint
2021-08-20 17:12:24 -04:00
William Banfield
1f2ba5a87d
cr feedback
2021-08-18 17:47:30 -04:00
William Banfield
885b78698c
cr feedback
2021-08-18 09:01:23 -04:00
William Banfield
5542a5bacb
code review feedback
2021-08-17 18:17:50 -04:00
William Banfield
03f3c49bb2
Update cmd/tendermint/commands/inspect.go
...
Co-authored-by: M. J. Fromberger <fromberger@interchain.io >
2021-08-17 15:46:03 -04:00
William Banfield
69239c55c9
add a doc.go
2021-08-13 15:07:17 -04:00
William Banfield
820284a0f1
add long description
2021-08-13 11:35:07 -04:00
William Banfield
182e4162ad
Merge branch 'master' into wb/issue-5908
2021-08-12 12:25:12 -04:00
William Banfield
c6077076d4
wip
2021-08-11 11:24:07 -04:00
William Banfield
c37e4a43a2
refactor debug code into separate package and rename to inspect
2021-08-10 18:13:27 -04:00
Sam Kleinman
66084a01dc
commands: add key migration cli ( #6790 )
2021-08-10 14:58:21 -04:00
JayT106
e87b0391cb
cli/indexer: Reindex events ( #6676 )
2021-07-28 00:04:54 +02:00
Marko
363ea56680
abci: remove counter app ( #6684 )
...
* remove counter app
* remove unneeeded ci
* lint fix
* modify tx sizes
* cleanup docs
* Update abci/cmd/abci-cli/abci-cli.go
Co-authored-by: Callum Waters <cmwaters19@gmail.com >
* Update docs/app-dev/getting-started.md
Co-authored-by: Callum Waters <cmwaters19@gmail.com >
* Update docs/app-dev/getting-started.md
Co-authored-by: Callum Waters <cmwaters19@gmail.com >
* bring back comment
* migrate to kvstore and not persistent
* remove unused func
* test persistent
Co-authored-by: Callum Waters <cmwaters19@gmail.com >
2021-07-12 14:55:32 +00:00
Marko
0e9bec1b53
pkg: expose p2p functions ( #6627 )
...
## Description
Expose p2p functions for use in the sdk.
These functions could also be copied over to the sdk. I dont have a preference of which is better.
2021-07-02 15:04:42 +00:00
Tanya Bouman
09ec247646
cmd/tendermint/commands: replace $HOME/.some/test/dir with t.TempDir ( #6623 )
...
* cmd/tendermint/commands: replace $HOME/.some/test/dir with t.TempDir
* update changelog
Co-authored-by: Marko <marbar3778@yahoo.com >
2021-06-28 14:38:15 +00:00
Sam Kleinman
ae5f98881b
p2p: make NodeID and NetAddress public ( #6583 )
2021-06-24 09:59:14 -04:00
Sam Kleinman
a6b30faf35
libs/time: move types/time into libs ( #6595 )
2021-06-17 16:02:31 -04:00
Callum Waters
c0f7fb08c0
config: add root dir to priv validator ( #6585 )
2021-06-16 17:13:14 +02:00
Sam Kleinman
a855f96946
p2p: renames for reactors and routing layer internal moves ( #6547 )
2021-06-08 08:17:09 -04:00
Aleksandr Bezobchuk
3635c7a382
logger: refactor Tendermint logger by using zerolog ( #6534 )
2021-06-07 08:30:48 -04:00
Sam Kleinman
00c284d9d7
node: change package interface ( #6540 )
2021-06-04 11:36:30 -04:00
Callum Waters
618c945d54
simplify initialization of light client ( #6530 )
2021-06-03 15:57:55 +02:00
Sam Kleinman
7bf84d9d7f
config: seperate priv validator config into seperate section ( #6462 )
...
Addresses a beginning component of #6255
2021-05-31 13:16:46 +00:00
Marko
1709e49813
version: revert version through ldflag only ( #6494 )
...
## Description
Add version back to versions, but allow it to be overridden via a ldflag.
Reason:
Many users are not setting the ldflag causing issues with tooling that relies on it (cosmjs)
closes #6488
cc @webmaster128
2021-05-28 14:22:31 +00:00
Sam Kleinman
fa891c5a4b
node: cleanup pex initialization ( #6467 )
2021-05-14 10:05:59 -04:00
Callum Waters
358d1a28b8
node: remove mode defaults. Make node mode explicit ( #6282 )
2021-04-02 09:31:25 +02:00
Callum Waters
9f7051d38a
node: implement tendermint modes ( #6241 )
...
Co-authored-by: dongsam <dongsamb@gmail.com >
Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com >
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com >
2021-03-18 11:17:53 +01:00
Marko
efd2fde474
privval: add ctx to privval interface ( #6240 )
...
## Description
- Add `context.Context` to Privval interface
This pr does not introduce context into our custom privval connection protocol because this will be removed in the next release. When this pr is released.
2021-03-16 14:41:03 +00:00
Callum Waters
418e2c140f
e2e: integrate light clients ( #6196 )
2021-03-05 14:24:45 +01:00
Anton Kaliaev
4540bef665
localnet: fix localnet by excluding self from persistent peers list ( #6209 )
...
Closes #6205
2021-03-05 12:58:52 +00:00
Marko
e2384a00ce
privval: return errors on loadFilePV ( #6185 )
...
## Description
- return errors on `loadFilePv`
closes #6182
2021-03-01 09:10:09 +00:00
Anton Kaliaev
e9e5026dac
rpc/client/http: drop endpoint arg from New and add WSOptions ( #6176 )
...
also
- replace `MaxReconnectAttempts`, `ReadWait`, `WriteWait` and `PingPeriod` options with `WSOptions` in `WSClient` (rpc/jsonrpc/client/ws_client.go).
- set default write wait to 10s for `WSClient`(rpc/jsonrpc/client/ws_client.go)
- unexpose `WSEvents`(rpc/client/http.go)
Closes #6162
2021-02-25 06:57:31 +00:00
Aleksandr Bezobchuk
6912c34b58
cmd: ignore missing wal in debug kill command ( #6160 )
...
closes : #6159
2021-02-22 13:24:56 +00:00
Callum Waters
29360f955c
light: improve timeout functionality ( #6145 )
2021-02-18 23:49:24 +01:00
Callum Waters
162f67cf26
correct spelling to US english ( #6077 )
2021-02-11 18:59:18 +01:00
Aleksandr Bezobchuk
bd8a9372d2
consensus: Groom Logs ( #5917 )
...
Executed a local network using simapp and looked for logs that seemed superfluous. This isn't by any means an exhaustive grooming, but should drastically help legibility of logs.
ref: #5912
2021-01-27 20:53:24 +00:00
Marko
70bb8cc8b7
proto: seperate native and proto types ( #5994 )
...
## Description
Separate protobuf and domain types. We should avoid using protobuf in our core logic.
ref #5460
2021-01-27 20:14:27 +00:00
Marko
f05788e632
privval: Query validator key ( #5876 )
...
## Description
- Query validator key when a remote signer is used. This is supported gRPC remote signing and filePV only.
Closes : #3009
2021-01-12 10:06:33 +00:00
Callum Waters
385ea1db7d
store: use db iterators for pruning and range-based queries ( #5848 )
2021-01-08 13:12:54 +01:00
Marko
09cf0bcb01
privval: add grpc ( #5725 )
...
Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com >
2021-01-06 10:49:30 -08:00
Callum Waters
3283a84ab2
cmd: hyphen case cli and config ( #5777 )
2020-12-11 13:14:04 +01:00
Anton Kaliaev
28e79a4d02
cmd: modify gen_node_key to print key to STDOUT ( #5772 )
...
closes : #5770
closes : #5769
also, include node ID in the output (#5769 ) and modify NodeKey to use
value semantics (it makes perfect sense for NodeKey to not be a
pointer).
2020-12-10 11:02:35 +04:00
Marko
bf35cc6443
cmd: add support for --key ( #5612 )
...
Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com >
2020-11-09 15:22:36 +01:00
Marko
d0db59e16c
ci: add goreleaser ( #5527 )
...
Co-authored-by: Erik Grinaker <erik@interchain.berlin >
Co-authored-by: Alessio Treglia <alessio@tendermint.com >
2020-10-27 13:54:53 +01:00
Anton Kaliaev
7121f68f25
light/rpc: fix ABCIQuery ( #5375 )
...
Closes #5106
2020-10-12 16:36:37 +04:00
Anton Kaliaev
12ebd7735a
light: cross-check the very first header ( #5429 )
...
Closes #5428
2020-10-09 14:29:22 +04:00
Callum Waters
ca8a404c7c
cli: light home dir should default to where the full node default is ( #5392 )
2020-09-25 08:45:56 +02:00
Anton Kaliaev
85a4be87a7
rpc/client: take context as first param ( #5347 )
...
Closes #5145
also applies to light/client
2020-09-23 09:21:57 +04:00
Marko
0ed8dba991
lint: enable errcheck ( #5336 )
...
## Description
Enable errcheck linter throughout the codebase
Closes : #5059
2020-09-07 15:03:18 +00:00