You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature_config_args.py incorrectly assumed that its testnet4 node
would not log a disk space warning.
0683b8e increased m_assumed_blockchain_size
on testnet4 from 1 to 11 GiB which triggers this bug on more
systems, e.g. a RAM disk.
Prevent the warning by setting -prune for these nodes.
Fix the same issue in feature_signet.py
t3_warning_log="Warning: Support for testnet3 is deprecated and will be removed in an upcoming release. Consider switching to testnet4."
473
476
474
-
defwarning_msg(node, approx_size):
475
-
returnf'Warning: Disk space for "{node.datadir_path/node.chain/"blocks"}" may not accommodate the block files. Approximately {approx_size} GB of data will be stored in this directory.'
476
-
477
-
# Testnet3 node will log the warning
477
+
self.log.debug("Testnet3 node will log the deprecation warning")
0 commit comments