Skip to content

Commit

Permalink
fix: explicitly set persist to false (#296)
Browse files Browse the repository at this point in the history
We will be make persist True in the base package
  • Loading branch information
h4ck3rk3y committed Oct 17, 2023
1 parent f1e18ca commit 37d8ccd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mev_relay/mev_relay_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ NETWORK_ID_TO_NAME = {
"3": "ropsten",
}

DONT_PERSIST_TO_DISK = False


def launch_mev_relay(
plan,
Expand All @@ -35,6 +37,7 @@ def launch_mev_relay(
user="postgres",
database="postgres",
service_name="postgres",
persistent=DONT_PERSIST_TO_DISK,
)

network_name = NETWORK_ID_TO_NAME.get(network_id, network_id)
Expand Down

0 comments on commit 37d8ccd

Please sign in to comment.