Zach Ramsay
46ccbcbff6
linting: apply 'gofmt -s -w' throughout
2017-11-27 22:39:11 +00:00
Zach Ramsay
fc33576bac
linting: replace megacheck with metalinter
2017-11-27 22:39:11 +00:00
Ethan Buchman
366bc00b70
Merge pull request #895 from tendermint/894-vagrant-instructions
...
add Vagrant instructions to CONTRIBUTING guides (Refs #894 ) [ci skip]
2017-11-27 20:54:32 +00:00
Ethan Buchman
d5cd3a111f
Merge pull request #899 from tendermint/feature/lite-client
...
Rename certifier to lite (#784 ) and add godocs
2017-11-27 17:21:15 +00:00
Ethan Buchman
94e400a5d6
Merge pull request #896 from tendermint/normalize-priority-and-id
...
normalize priority and id and remove pointers in ChannelDescriptor
2017-11-27 17:05:38 +00:00
Ethan Buchman
7dd249f754
Merge pull request #882 from caffix/develop
...
fixed race condition reported in issue #881
2017-11-27 16:50:57 +00:00
Adrian Brink
12ae1bb5e5
Address comments
2017-11-27 16:23:56 +01:00
Adrian Brink
248f176c1f
Rename light to lite
2017-11-27 16:19:00 +01:00
Adrian Brink
1871a7c3d0
Rename certifier to light ( #784 ) and add godocs
...
The certifier package is renamed to light. This is more descriptive
especially in the wider blockchain context. Moreover we are building
light-clients using the light package.
This also adds godocs to all exported functions.
Furthermore it introduces some extra error handling. I've added one TODO
where I would like someone else's opinion on how to handle the error.
2017-11-27 16:18:27 +01:00
Petabyte Storage
59b3dcb5cf
normalize priority and id and remove pointers in ChannelDescriptor
2017-11-25 22:01:23 -08:00
Anton Kaliaev
fb87590c82
add Vagrant instructions to CONTRIBUTING guides (Refs #894 ) [ci skip]
2017-11-24 16:42:46 -06:00
Ethan Buchman
38c4de3fc7
Merge pull request #891 from tendermint/fix-vagrantfile
...
go requires Git (Fixes #879 )
2017-11-24 22:07:29 +00:00
Anton Kaliaev
ae67408d13
go requires Git ( Fixes #879 )
2017-11-23 16:55:57 -06:00
Emmanuel Odeke
42da8cd297
consensus/WAL: benchmark WALDecode across data sizes
2017-11-23 12:43:11 -07:00
caffix
887cb6d0cd
added public methods to handle locking within the trust metric
2017-11-22 23:42:38 -05:00
caffix
aeaf2d0b20
Merge branch 'develop' of https://github.com/tendermint/tendermint into develop
2017-11-22 23:11:01 -05:00
Ethan Buchman
932e472986
Merge pull request #885 from AFDudley/patch-1
...
Update getting-started.rst to fix broken link
2017-11-22 20:29:30 +00:00
Ethan Buchman
e845987503
p2p: disable trustmetric test while being fixed
2017-11-22 20:20:53 +00:00
Ethan Buchman
531b1197a7
Merge pull request #843 from tendermint/refactor-mconnection-with-go-wire-1
...
WIP: begin parallel refactoring: go-wire Write methods and MConnection
2017-11-22 19:34:22 +00:00
Ethan Buchman
52ad6242f4
Merge pull request #888 from tendermint/rm-dead-file
...
remove unused file
2017-11-22 18:47:30 +00:00
Zach Ramsay
969b34057b
remove unused file
2017-11-22 17:22:53 +00:00
Petabyte Storage
e110f70b5c
update glide.yaml versions with go-wire at develop branch
2017-11-22 07:34:10 -08:00
Ethan Buchman
e997db7a23
Merge pull request #859 from tendermint/fix/addrbook
...
Fix/addrbook
2017-11-21 15:31:48 +00:00
Ethan Buchman
c4b695f78d
minor fixes from review
2017-11-21 15:30:19 +00:00
Ethan Buchman
75463b8331
Merge pull request #877 from tendermint/p2p-switch-DialSeeds-undeterministically
...
p2p: make Switch.DialSeeds use a new PRNG per call
2017-11-21 15:24:29 +00:00
A. F. Dudley
882c25f292
Update getting-started.rst to fix broken link
...
fixes broken link to introduction.html
2017-11-21 10:11:48 -05:00
caffix
9c8100043e
made changes to address suggestions from the PR comments
2017-11-20 19:15:11 -05:00
Emmanuel Odeke
031e10133c
p2p: make Switch.DialSeeds use a new PRNG per call
...
Fixes https://github.com/tendermint/tendermint/issues/875
Ensure that every DialSeeds call uses a new PRNG seeded from
tendermint/tmlibs/common.RandInt which internally uses
crypto/rand to seed its source.
2017-11-20 15:28:42 -07:00
caffix
4087326f45
fixed race condition reported in issue #881
2017-11-20 16:47:05 -05:00
Ethan Buchman
f9bc22ec6a
p2p: fix comment on addPeer (thanks @odeke-em)
2017-11-20 21:36:01 +00:00
Ethan Buchman
26cd99c66e
p2p: fix non-routable addr in test
2017-11-20 19:56:44 +00:00
Ethan Buchman
9334aad906
Merge pull request #871 from tendermint/fix/docs-860
...
docs: fix links
2017-11-20 19:47:18 +00:00
Ethan Buchman
c695c53259
Merge pull request #876 from tendermint/p2p-extract-key-lex-check-to-variable-for-clarity
...
p2p: use bytes.Equal for key comparison
2017-11-20 19:33:58 +00:00
Martin Dyring-Andersen
5c4397ab30
Run tests on AppVeyor
2017-11-20 13:23:28 +01:00
Emmanuel Odeke
5c34d087d9
p2p: use bytes.Equal for key comparison
...
Updates https://github.com/tendermint/tendermint/issues/850
My security alarms falsely blarred when I skimmed and noticed
keys being compared with `==`, without the proper context
so I mistakenly filed an issue, yet the purpose of that
comparison was to check if the local ephemeral public key
was just the least, sorted lexicographically.
Anyways, let's use the proper bytes.Equal check, to save future labor.
2017-11-18 23:34:27 -07:00
Zach Ramsay
559bd169bd
docs: fix links, closes #860
2017-11-17 14:03:43 +00:00
Ethan Buchman
f8c969f5a5
Merge pull request #868 from tendermint/small-things
...
node: clean makeNodeInfo
2017-11-17 01:22:45 +00:00
Ethan Buchman
c5253c7a31
node: clean makeNodeInfo
2017-11-17 01:22:38 +00:00
Ethan Buchman
53f15fde07
update changelog
2017-11-17 00:04:03 +00:00
Ethan Buchman
814f9cb566
Merge pull request #856 from tendermint/small-things
...
Small things
2017-11-17 00:03:57 +00:00
Ethan Buchman
af0db599b0
minor fixes
2017-11-16 23:57:00 +00:00
Ethan Buchman
104368bd84
Merge pull request #787 from caffix/develop
...
Initial Trust Metric Implementation
2017-11-16 23:51:53 +00:00
Ethan Buchman
99461a178e
Merge pull request #857 from gguoss/patch-1
...
Failed to compile comment code
2017-11-16 18:35:18 +00:00
Ethan Buchman
feb3230160
some comments
2017-11-16 04:43:07 +00:00
Ethan Buchman
be1a16a601
p2p/pex: simplify ensurePeers
2017-11-16 04:30:38 +00:00
Ethan Buchman
8e044b0e6d
p2p/addrbook: some comments
2017-11-16 04:30:23 +00:00
Ethan Buchman
40e93a5f9e
p2p/addrbook: fix addToOldBucket
2017-11-16 04:08:46 +00:00
Ethan Buchman
435eb6e2b3
p2p/addrbook: add non-terminating test
2017-11-16 04:04:54 +00:00
Ethan Buchman
8c88cc017a
p2p/addrbook: addAddress returns error. more defensive PickAddress
2017-11-16 03:59:54 +00:00
Ethan Buchman
ed95cc160a
p2p/addrbook: simplify PickAddress
2017-11-16 02:31:47 +00:00