This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
boost sendQueue for votes
pull/67/head
Jae Kwon
10 years ago
parent
8b6d489755
commit
32f7babf87
1 changed files
with
9 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-6
consensus/reactor.go
+ 9
- 6
consensus/reactor.go
View File
@ -84,16 +84,19 @@ func (conR *ConsensusReactor) GetChannels() []*p2p.ChannelDescriptor {
// TODO optimize
return
[
]
*
p2p
.
ChannelDescriptor
{
&
p2p
.
ChannelDescriptor
{
Id
:
StateChannel
,
Priority
:
5
,
Id
:
StateChannel
,
Priority
:
5
,
SendQueueCapacity
:
100
,
}
,
&
p2p
.
ChannelDescriptor
{
Id
:
DataChannel
,
Priority
:
5
,
Id
:
DataChannel
,
Priority
:
5
,
SendQueueCapacity
:
2
,
}
,
&
p2p
.
ChannelDescriptor
{
Id
:
VoteChannel
,
Priority
:
5
,
Id
:
VoteChannel
,
Priority
:
5
,
SendQueueCapacity
:
40
,
}
,
}
}
Write
Preview
Loading…
Cancel
Save