Merge pull request #2 from MAGICGrants/MAX_SLIPPAGE_PERCENT-constant

MAX_SLIPPAGE_PERCENT to constants
This commit is contained in:
Artur
2024-10-03 20:29:30 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -3,10 +3,9 @@ import traceback
import random
import time
from constants import MAX_SLIPPAGE_PERCENT
import util
MAX_SLIPPAGE_PERCENT = 1
order_min = {
'XBT': 0.0001,
'XMR': 0.03

View File

@@ -1,3 +1,4 @@
MIN_BITCOIN_SEND_AMOUNT = 0.0001
MAX_BITCOIN_FEE_PERCENT = 10
MIN_MONERO_SEND_AMOUNT = 0.01
MIN_MONERO_SEND_AMOUNT = 0.01
MAX_SLIPPAGE_PERCENT = 1