We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f51f57 commit e5bddc0Copy full SHA for e5bddc0
1 file changed
conf/limits.go
@@ -17,9 +17,6 @@
17
package conf
18
19
const (
20
- // MaxTxBroadcastTTL defines the TTL limit of a AddTx request broadcasting within the
21
- // block producers.
22
- MaxTxBroadcastTTL = 1
23
// MaxPendingTxsPerAccount defines the limit of pending transactions of one account.
24
MaxPendingTxsPerAccount = 1000
25
// MaxTransactionsPerBlock defines the limit of transactions per block.
@@ -28,5 +25,8 @@ const (
28
29
26
// These limits will not cause inconsistency within certain range.
30
27
31
- MaxCachedBlock = 1000
+ // MaxTxBroadcastTTL defines the TTL limit of a AddTx request broadcasting within the
+ // block producers.
+ MaxTxBroadcastTTL = 1
+ MaxCachedBlock = 1000
32
)
0 commit comments