Skip to content

Commit

Permalink
feat: fix fee to 300000000
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Sep 9, 2022
1 parent 2cca00b commit 8e5d033
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/datalayer/persistance.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ const addMirror = async (storeId, url, forceAddMirror = false) => {
body: JSON.stringify({
id: storeId,
urls: [url],
amount: _.get(CONFIG, 'DEFAULT_FEE', 1000000000 /* 1 billion mojos */),
amount: _.get(CONFIG, 'DEFAULT_FEE', 300000000 /* 1 billion mojos */),
}),
};

Expand Down Expand Up @@ -495,7 +495,7 @@ const makeOffer = async (offer) => {
url: `${CONFIG.DATALAYER_URL}/make_offer`,
body: JSON.stringify({
...offer,
fee: _.get(CONFIG, 'DEFAULT_FEE', 1000000000 /* 1 billion mojos */),
fee: _.get(CONFIG, 'DEFAULT_FEE', 300000000 /* 1 billion mojos */),
}),
};

Expand Down Expand Up @@ -575,7 +575,7 @@ const cancelOffer = async (tradeId) => {
body: JSON.stringify({
trade_id: tradeId,
secure: true,
fee: _.get(CONFIG, 'DEFAULT_FEE', 1000000000 /* 1 billion mojos */),
fee: _.get(CONFIG, 'DEFAULT_FEE', 300000000 /* 1 billion mojos */),
}),
};

Expand Down

0 comments on commit 8e5d033

Please sign in to comment.