Jae Kwon
e1ff53fd0b
Use []byte instead of Bytes, use tmlibs/common.KVPair
2017-12-26 04:52:02 -08:00
Jae Kwon
a861d68a31
Update glide.yaml and fix tests
2017-12-26 00:45:31 -08:00
Zach
96c816f428
Merge pull request #160 from KrzysiekJ/test-cmd-short-circuit
...
Short-circuit assertions in test command
2017-12-25 20:21:24 +00:00
Jae Kwon
ff65421324
Proposal: New Makefile standard template ( #168 )
...
* Cleaned up makefile.
* Improve 'make all' order
* Add devdoc
* Update circle.yml
2017-12-25 00:14:13 -08:00
Jae Kwon
f390385baf
Fee is a KNPair ( #167 )
...
KVPair is {[]byte,[]byte}
2017-12-24 18:39:16 -08:00
Jae Kwon
aaaacba1cd
Use gogoproto's nullable=false ( #166 )
...
* Use gogoproto's nullable=false where appropriate.
2017-12-22 19:41:19 -08:00
Jae Kwon
e4b9f1abe7
Id -> ID using gogo
2017-12-20 17:33:59 -08:00
Ethan Buchman
98a38737c4
Merge pull request #156 from tendermint/use-single-connection-in-console
...
cmd/abci-cli: use a single connection per session
2017-12-20 16:11:25 -05:00
Ethan Buchman
9c145a9e19
Merge branch 'develop' into use-single-connection-in-console
2017-12-20 15:55:36 -05:00
Ethan Buchman
2927caa0eb
fix flag parsing in console mode
2017-12-20 15:54:14 -05:00
Ethan Buchman
c03928766d
Merge pull request #163 from tendermint/feature/enhance-endblock
...
Update the ResponseEndBlock values
2017-12-20 15:16:09 -05:00
Ethan Buchman
fa15e4f554
update changelog [ci skip]
2017-12-20 15:16:15 -05:00
Anton Kaliaev
0d69ace961
fix circleci config
2017-12-20 13:40:26 -06:00
Jae Kwon
e46a99a32f
Fix Makefile
2017-12-20 11:02:22 -08:00
Adrian Brink
57c49cc825
Include unsaved circle.yml file
2017-12-20 10:40:35 +01:00
Adrian Brink
c268c4e767
Update Circle and Makefile to run tests/linting on CI
2017-12-20 10:33:24 +01:00
Jae Kwon
57a83fe73e
Merge branch 'develop' into feature/enhance-endblock
2017-12-20 00:11:57 -08:00
Jae Kwon
3798f9fa8e
Reorder README
2017-12-20 00:07:58 -08:00
Jae Kwon
c14d3982ac
ValidatorSetUpdates -> ValidatorUpdates
2017-12-20 00:02:41 -08:00
Anton Kaliaev
9a5b943e77
update changelog [ci skip]
2017-12-19 13:17:29 -06:00
Emmanuel T Odeke
811dc071aa
protoc: "//nolint: gas" directive after pb generation ( #164 )
...
* protoc: "//nolint: gas" directive after pb generation
Fixes #138
Since we can't add package directives through the protoc
compiler, yet we need to "//nolint: gas" the Go generated
protobuf file, added a script whose purpose is to
go find the "package (\w+)$" declaration after go fmt
was run by protoc.
The competing solutions were more complex and can be
examined by visiting
https://github.com/tendermint/abci/issues/138#issuecomment-352226217
* simplify script
* rewrite script to work on Mac
2017-12-19 12:29:59 -06:00
Anton Kaliaev
66296fe11a
updates -> validator_set_updates
...
ConsensusParamChanges -> ConsensusParamUpdates
2017-12-19 12:13:45 -06:00
Anton Kaliaev
843b10ed26
Merge pull request #157 from tendermint/linter-fix-v2
...
enable linter & make deterministic
2017-12-16 23:02:05 -06:00
Anton Kaliaev
dd7728c4c5
Merge pull request #161 from tendermint/fix-some-vet-issues
...
all: fix vet issues with build tags, formatting
2017-12-16 22:40:51 -06:00
Emmanuel Odeke
e3d244091d
cleanup requested from review by @melekes
2017-12-16 15:49:38 -07:00
Ethan Frey
eb6d412a82
Add tests to protobuf objects for pr coverage
2017-12-14 09:35:33 +01:00
Ethan Frey
9c5e1a824d
Updated naming of EndBlock parameters
...
* Changes -> Updates for validators
* ConsensusParams.XXXParams -> ConsensusParams.XXX
* As per feedback from Jae on PR
2017-12-14 09:27:20 +01:00
Ethan Frey
895e14d6bd
Update Diffs to Changes, fix README
2017-12-13 17:57:43 +01:00
Ethan Frey
25f6f6518c
Update the ResponseEndBlock values
...
* Rename diffs -> changes
* Add consensus_param_changes
For context, see:
https://github.com/tendermint/tendermint/issues/924
https://github.com/tendermint/tendermint/issues/952
2017-12-13 17:50:24 +01:00
Anton Kaliaev
c532e8cabc
add \n to Printf lines
2017-12-12 22:44:55 -06:00
Emmanuel Odeke
bbc3b807c6
all: fix vet issues with build tags, formatting
...
* Build tags need to come before the package name
and have at least a blank line, between them and
the package, please see
https://golang.org/pkg/go/build/#hdr-Build_Constraints
* fmt.Println doesn't take formatting verbs
* Fix a missing formatting argument to fmt.Printf
2017-12-12 17:23:16 -07:00
Emmanuel Odeke
5ea42475ce
cmd/abci-cli: implement batch
...
Can now run batch which can be tested by:
```shell
echo -e "echo foo\necho blue" | abci-cli batch
```
giving
```shell
I[12-12|07:55:55.513] Starting socketClient
module=abci-client impl=socketClient
-> code: OK
-> data: foo
-> data.hex: 0x666F6F
-> code: OK
-> data: blue
-> data.hex: 0x626C7565
```
2017-12-12 16:57:51 -07:00
Zach Ramsay
cabc516726
batch: progress
2017-12-12 16:57:51 -07:00
Emmanuel Odeke
ecc13d5a8e
cmd/abci-cli: use a single connection per session
...
Use the single client connection at startup time
for sending over commands instead of shelling out
for every command.
This code fixes the regression from
https://github.com/tendermint/abci/pull/117
which instead used "os/exec".Command with:
"abci-cli <the_command> [args...]"
The purpose of this code is to restore us
back to the state after cobra replace urlfave/cli.
There is still a bit of work to implement Batch
itself, but that should be simpler as a focused
command.
Fixes #133
2017-12-12 16:57:51 -07:00
Krzysztof Jurewicz
6633889632
Short-circuit assertions in test command
2017-12-12 21:06:56 +01:00
Ethan Buchman
310beae63c
types: check ResponseCheckTx too
2017-12-12 10:14:50 -05:00
Emmanuel Odeke
7167d4e4c7
types: compile type assertions to avoid sneaky runtime surprises
...
Ensure that the types in result.go implement both
json.Marshaler and json.Unmarshaler
and thus avoid any accidental deletions of their respective
methods which would then cause surprises at runtime.
2017-12-12 01:15:39 -07:00
Zach Ramsay
d6e821ea4f
linter: enable in CI & make deterministic
2017-12-10 22:34:38 +00:00
Ethan Buchman
fca2b508c1
Merge pull request #155 from tendermint/develop
...
v0.8.0 take II
2017-12-06 03:26:47 -05:00
Ethan Buchman
47216538fd
types: add UnmarshalJSON funcs for Response types
2017-12-06 03:19:28 -05:00
Ethan Buchman
12dca48768
Merge pull request #154 from tendermint/develop
...
Release 0.8.0
2017-12-06 02:39:56 -05:00
Ethan Buchman
293cf5e634
minor fix [ci skip]
2017-12-06 02:41:14 -05:00
Ethan Buchman
f860c33515
changelog and version
2017-12-06 02:33:35 -05:00
Ethan Buchman
e1ee4d6bf5
types: add MarshalJSON funcs for Response types with a Code
2017-12-06 01:56:39 -05:00
Ethan Buchman
4b9cae8998
Merge pull request #151 from tendermint/set-option-code
...
ResponseSetOption includes a response Code. Closes #64 "
2017-12-05 18:48:02 -05:00
Ethan Buchman
1b2c383205
ResponseSetOption includes a response Code. Closes #64 "
2017-12-05 18:41:52 -05:00
Ethan Buchman
fff8e963f8
update readme
2017-12-05 17:45:26 -05:00
Ethan Buchman
cfa14074df
Merge branch 'server-test' into develop
2017-12-05 17:39:30 -05:00
Ethan Buchman
f6e22e4296
update readme for notes about grpc
2017-12-05 17:22:06 -05:00
Krzysztof Jurewicz
8357326db0
Fix test command
2017-12-05 18:28:15 +01:00