Commit 37d8ccd8 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

fix: explicitly set persist to false (#296)

We will be make persist True in the base package
parent f1e18ca7
...@@ -17,6 +17,8 @@ NETWORK_ID_TO_NAME = { ...@@ -17,6 +17,8 @@ NETWORK_ID_TO_NAME = {
"3": "ropsten", "3": "ropsten",
} }
DONT_PERSIST_TO_DISK = False
def launch_mev_relay( def launch_mev_relay(
plan, plan,
...@@ -35,6 +37,7 @@ def launch_mev_relay( ...@@ -35,6 +37,7 @@ def launch_mev_relay(
user="postgres", user="postgres",
database="postgres", database="postgres",
service_name="postgres", service_name="postgres",
persistent=DONT_PERSIST_TO_DISK,
) )
network_name = NETWORK_ID_TO_NAME.get(network_id, network_id) network_name = NETWORK_ID_TO_NAME.get(network_id, network_id)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment