diff options
author | Felföldi Zsolt <zsfelfoldi@gmail.com> | 2019-04-08 20:04:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 20:04:14 +0800 |
commit | 7c08e48141af2741609fb700d5cb76fb645a8471 (patch) | |
tree | f2b461b29b0b74dc788f29baf85bb352796f57bc /params | |
parent | e2f3465e83a4c03b48977ed367e68b0d63ca2ed1 (diff) | |
parent | 64f9c1ea0984141623843abfa9262fc9401192f2 (diff) | |
download | go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar.gz go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar.bz2 go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar.lz go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar.xz go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.tar.zst go-tangerine-7c08e48141af2741609fb700d5cb76fb645a8471.zip |
Merge pull request #19403 from zsfelfoldi/remove-les1
les: remove support for LES/1
Diffstat (limited to 'params')
-rw-r--r-- | params/network_params.go | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/params/network_params.go b/params/network_params.go index f8731e897..024c4af45 100644 --- a/params/network_params.go +++ b/params/network_params.go @@ -32,13 +32,8 @@ const ( // considered probably final and its rotated bits are calculated. BloomConfirms = 256 - // CHTFrequencyClient is the block frequency for creating CHTs on the client side. - CHTFrequencyClient = 32768 - - // CHTFrequencyServer is the block frequency for creating CHTs on the server side. - // Eventually this can be merged back with the client version, but that requires a - // full database upgrade, so that should be left for a suitable moment. - CHTFrequencyServer = 4096 + // CHTFrequency is the block frequency for creating CHTs + CHTFrequency = 32768 // BloomTrieFrequency is the block frequency for creating BloomTrie on both // server/client sides. |