From 19d5e05d608a622e8cf4d4b5499a9d7c45dde440 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 17 Jul 2024 19:26:51 +0300 Subject: [PATCH] config: drop MTB value for NeoFS networks to three days We want to cut the tail more aggressively, what matters is state, but not old blocks and transactions that contracts don't use in any way. #3493 suggests that it's safe to limit the tail to one day, but let's be a bit more conservative for now. As a sidenote, EVM only allows to fetch things from the recent 256 blocks. Signed-off-by: Roman Khimov --- config/protocol.mainnet.neofs.yml | 2 +- config/protocol.testnet.neofs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/protocol.mainnet.neofs.yml b/config/protocol.mainnet.neofs.yml index 415f57b04..c22eef6f8 100644 --- a/config/protocol.mainnet.neofs.yml +++ b/config/protocol.mainnet.neofs.yml @@ -1,6 +1,6 @@ ProtocolConfiguration: Magic: 91414437 - MaxTraceableBlocks: 2102400 + MaxTraceableBlocks: 17280 InitialGASSupply: 52000000 TimePerBlock: 15s MemPoolSize: 50000 diff --git a/config/protocol.testnet.neofs.yml b/config/protocol.testnet.neofs.yml index efd9c7a59..5d6ee4494 100644 --- a/config/protocol.testnet.neofs.yml +++ b/config/protocol.testnet.neofs.yml @@ -1,6 +1,6 @@ ProtocolConfiguration: Magic: 735783775 - MaxTraceableBlocks: 2102400 + MaxTraceableBlocks: 17280 InitialGASSupply: 52000000 TimePerBlock: 15s MemPoolSize: 50000