mirror of
https://github.com/MAGICGrants/autoforward-autoconvert.git
synced 2026-01-09 13:37:54 -05:00
Merge pull request #2 from MAGICGrants/MAX_SLIPPAGE_PERCENT-constant
MAX_SLIPPAGE_PERCENT to constants
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user