faucet: adjust rate limits
This commit is contained in:
parent
a4fe359c28
commit
1131026be9
@ -154,16 +154,16 @@ var runCmd = &cli.Command{
|
|||||||
from: from,
|
from: from,
|
||||||
sendPerRequest: sendPerRequest,
|
sendPerRequest: sendPerRequest,
|
||||||
limiter: NewLimiter(LimiterConfig{
|
limiter: NewLimiter(LimiterConfig{
|
||||||
TotalRate: time.Second,
|
TotalRate: 500 * time.Millisecond,
|
||||||
TotalBurst: 256,
|
TotalBurst: build.BlockMessageLimit,
|
||||||
IPRate: time.Minute,
|
IPRate: 10 * time.Minute,
|
||||||
IPBurst: 5,
|
IPBurst: 5,
|
||||||
WalletRate: 15 * time.Minute,
|
WalletRate: 15 * time.Minute,
|
||||||
WalletBurst: 2,
|
WalletBurst: 2,
|
||||||
}),
|
}),
|
||||||
minerLimiter: NewLimiter(LimiterConfig{
|
minerLimiter: NewLimiter(LimiterConfig{
|
||||||
TotalRate: time.Second,
|
TotalRate: 500 * time.Millisecond,
|
||||||
TotalBurst: 256,
|
TotalBurst: build.BlockMessageLimit,
|
||||||
IPRate: 10 * time.Minute,
|
IPRate: 10 * time.Minute,
|
||||||
IPBurst: 2,
|
IPBurst: 2,
|
||||||
WalletRate: 1 * time.Hour,
|
WalletRate: 1 * time.Hour,
|
||||||
|
Loading…
Reference in New Issue
Block a user