Skip to content

Commit e7339dc

Browse files
committed
fix
1 parent ae9c2dc commit e7339dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hathor/cli/run_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def create_parser(cls) -> ArgumentParser:
120120
help='A prefix that will be added in all Prometheus metrics')
121121
cache_args = parser.add_mutually_exclusive_group()
122122
cache_args.add_argument('--cache', action='store_true', help=SUPPRESS) # moved to --disable-cache
123-
cache_args.add_argument('--disable-cache', action='store_false', help='Disable cache for tx storage')
123+
cache_args.add_argument('--disable-cache', action='store_true', help='Disable cache for tx storage')
124124
parser.add_argument('--cache-size', type=int, help='Number of txs to keep on cache',
125125
default=DEFAULT_CACHE_SIZE)
126126
parser.add_argument('--cache-interval', type=int, help='Cache flush interval')

0 commit comments

Comments
 (0)