From 3aad27fb0391d0bc2255bdd0dfda75c10c00b4f8 Mon Sep 17 00:00:00 2001 From: Delweng Date: Thu, 19 Oct 2023 23:09:08 +0800 Subject: [PATCH] clients/go-ethereum: disable min free disk check (#910) --- clients/go-ethereum/geth.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clients/go-ethereum/geth.sh b/clients/go-ethereum/geth.sh index d35fba6a20..92cdd37db0 100644 --- a/clients/go-ethereum/geth.sh +++ b/clients/go-ethereum/geth.sh @@ -169,5 +169,7 @@ fi # Run the go-ethereum implementation with the requested flags. FLAGS="$FLAGS --nat=none" +# Disable disk space free monitor +FLAGS="$FLAGS --datadir.minfreedisk=0" echo "Running go-ethereum with flags $FLAGS" $geth $FLAGS