Ethan Frey
9657d183f8
Remove CGO_ENABLED=0 from make install
It was writing to stdlib packages net, x/crypto, etc. and failing when it didn't have write access to them (which it often shouldn't)
Fixes issue #941
Explained in golang issue: golang/go#18981 (fixed in develop/1.10)
7 years ago
Ethan Buchman
b98098b1f0
Merge pull request #932 from tendermint/920-default-moniker-to-host-name
default moniker to the host name
7 years ago
Ethan Buchman
1ae14e5a3d
Merge pull request #933 from tendermint/880-node-fails-if-one-of-the-seeds-cannot-be-resolved
tolerate unresolvable seeds
7 years ago
Anton Kaliaev
7a92a3b729
update docker readme
7 years ago
Anton Kaliaev
457c688346
update Dockerfile to point to 0.12.1
7 years ago
Anton Kaliaev
c609b18698
tolerate unresolvable seeds (Refs #880 )
7 years ago
Anton Kaliaev
5ff0bb2100
default moniker to the host name (Refs #920 )
7 years ago
Anton Kaliaev
90944bb1a2
be specific about what type we're encoding
to be consistent with Decode, which returns TimedWALMessage
7 years ago
Anton Kaliaev
07571741c5
[consensus] remove WAL separator (Refs #785 )
We don't really need a separator unless we have complex structures
(rows, cells like RDBMS have https://www.sqlite.org/fileformat.html ).
7 years ago
Ethan Buchman
14ccc8bc4c
Merge pull request #930 from tendermint/468-make-consensus-data-deterministic
make consensus/test_data deterministic
7 years ago
Anton Kaliaev
5cb936fa00
fixes after my own review
7 years ago
Anton Kaliaev
c6f025f40e
generate WAL on the fly (Refs #468 )
7 years ago
Ethan Buchman
a2b92c0745
Merge pull request #927 from tendermint/release-v0.13.0
Release v0.13.0
7 years ago
Ethan Buchman
6884463ba2
update changelog [ci skip]
7 years ago
Ethan Buchman
167d0e82f9
fixes and version bump
7 years ago
Ethan Buchman
42e77de6a3
changelog; minor stuff; update glide
7 years ago
Ethan Buchman
58b4a8395b
Merge pull request #917 from tendermint/trust-metric-cleanup
Trust metric cleanup
7 years ago
Ethan Buchman
d0dc04001e
rpc: make time human readable. closes #926
7 years ago
Ethan Buchman
e101aa9fc8
fix for legacy gowire
7 years ago
Ethan Buchman
6a7c399c2d
Merge pull request #923 from tendermint/enable-homebrew-installation-from-source
Enable homebrew installation from source
7 years ago
Anton Kaliaev
b3e1341e44
use get rev-parse --short HEAD everywhere instead of GitCommit[:8]
7 years ago
Anton Kaliaev
ebdc7ddf20
add missing get_vendor_deps to "make all"
7 years ago
Anton Kaliaev
f30ce8b210
remove GitDescribe - no such variable defined in version package
- add "-w -s" flags to reduce binary size (they remove debug info)
7 years ago
Anton Kaliaev
76cccfaabd
get_vendor_deps does not require all the tools
- remove revision cmd
- rename ensure_tools to tools
7 years ago
Anton Kaliaev
440d76647d
rename release to test_release
7 years ago
Anton Kaliaev
2cc2fade06
remove -extldflags "-static"
golang builds static libraries by default.
7 years ago
Anton Kaliaev
e50173c7dc
merge 2 rules in .editorconfig
7 years ago
Anton Kaliaev
3318cf9aec
do not suppose that GOPATH is added to PATH
```
brew install tendermint --HEAD
==> Installing tendermint from tendermint/tendermint
==> Cloning https://github.com/tendermint/tendermint.git
Cloning into '/Users/antonk/Library/Caches/Homebrew/tendermint--git'...
remote: Counting objects: 437, done.
remote: Compressing objects: 100% (412/412), done.
remote: Total 437 (delta 7), reused 129 (delta 2), pack-reused 0
Receiving objects: 100% (437/437), 3.04 MiB | 1006.00 KiB/s, done.
Resolving deltas: 100% (7/7), done.
==> Checking out branch develop
==> make get_vendor_deps
Last 15 lines from /Users/antonk/Library/Logs/Homebrew/tendermint/01.make:
2017-12-04 14:54:54 -0600
make
get_vendor_deps
go get github.com/mitchellh/gox github.com/tcnksm/ghr github.com/Masterminds/glide github.com/alecthomas/gometalinter
make: gometalinter: No such file or directory
make: *** [ensure_tools] Error 1
If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/tendermint/homebrew-tendermint/issues
```
7 years ago
Ethan Buchman
b37230f6db
Merge pull request #918 from tendermint/abci-update
Abci update
7 years ago
Ethan Buchman
1bf57a90df
glide: update grpc version
7 years ago
Ethan Buchman
d2db202a2d
mempool: assert -> require in test
7 years ago
Ethan Buchman
08857606dc
test: fix test/app/counter_test.sh
7 years ago
Ethan Buchman
72e389041c
Merge pull request #914 from tendermint/11-response-info-with-invalid-height-crashes-tm
int64 height (Refs #911 )
7 years ago
Anton Kaliaev
d41c0b10c8
change delta's type from int to int64
7 years ago
Ethan Buchman
898ae53672
types: fix for broken customtype int in gogo
7 years ago
Ethan Buchman
9e20cfee0e
glide
7 years ago
Ethan Buchman
9af8da7aad
update for new abci int types
7 years ago
Ethan Buchman
c9be2b89f9
mempool: return error on cached txs
7 years ago
Ethan Buchman
388f66c9b3
types: drop uint64 from protobuf.go
7 years ago
Anton Kaliaev
cd5a5d332f
remove comments for uint64 related to possible underflow [ci skip]
7 years ago
Ethan Buchman
cb9a1dbb4f
p2p/trust: lock on Copy()
7 years ago
Ethan Buchman
814541f6d9
p2p/trust: split into multiple files and improve function order
7 years ago
Anton Kaliaev
89cbcceac4
error if app returned negative last block height ( Fixes #911 )
7 years ago
Anton Kaliaev
10f7858453
use rand.Int63n, remove underflow check, remove unnecessary cast
7 years ago
Anton Kaliaev
922af7c405
int64 height
uint64 is considered dangerous. the details will follow in a blog post.
7 years ago
Ethan Buchman
e9f8e56895
fixes from rebase
7 years ago
Anton Kaliaev
3eb069a50c
no need in this hack since we have replay now
7 years ago
Anton Kaliaev
f1fbf995f7
protect ourselves again underflow (Refs #911 )
7 years ago
Anton Kaliaev
86af889dfb
remove unnecessary casts (Refs #911 )
7 years ago
Anton Kaliaev
b3492356e6
uint64 height (Refs #911 )
7 years ago