Skip to content

Commit 488fc0e

Browse files
committed
remove option to change matching pool size
1 parent 5109aa0 commit 488fc0e

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

Home.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -882,12 +882,15 @@ def main():
882882
data['suffix'] = (str(pct)+'0')[2:4]+'pctCOCM'
883883
data['pct_COCM'] = pct
884884

885-
matching_pool_size_override = None
886-
with st.expander('Advanced: Change Matching Pool Size'):
887-
matching_pool_size_override = st.number_input(f"New matching pool size (in {data['config_df']['token_code'].iloc[0]}): ", value=float(data['matching_available']), min_value=1.0)
888-
if matching_pool_size_override is not None:
889-
data['matching_available'] = matching_pool_size_override
890-
# Display various settings of the round
885+
886+
# matching_pool_size_override = None
887+
# with st.expander('Advanced: Change Matching Pool Size'):
888+
# matching_pool_size_override = st.number_input(f"New matching pool size (in {data['config_df']['token_code'].iloc[0]}): ", value=float(data['matching_available']), min_value=1.0)
889+
# if matching_pool_size_override is not None:
890+
# data['matching_available'] = matching_pool_size_override
891+
# # Display various settings of the round
892+
893+
891894
display_round_settings(data)
892895

893896

0 commit comments

Comments
 (0)