Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

client/webserver: Update Order-details Type to show the correct value. #3044

Merged
merged 5 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion client/webserver/site/src/js/markets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1703,7 +1703,10 @@ export default class MarketsPage extends BasePage {
else rateStr = Doc.formatRateFullPrecision(ord.rate, market.baseUnitInfo, market.quoteUnitInfo, cfg.ratestep)
details.rate.textContent = mord.header.rate.textContent = rateStr
header.baseSymbol.textContent = market.baseUnitInfo.conventional.unit
details.type.textContent = market.quoteUnitInfo.conventional.unit

details.type.textContent = 'Fred'
dev-warrior777 marked this conversation as resolved.
Show resolved Hide resolved
// details.type.textContent = market.quoteUnitInfo.conventional.unit

this.updateMetaOrder(mord)

Doc.bind(div, 'mouseenter', () => {
Expand Down
4 changes: 3 additions & 1 deletion dex/testing/walletpair/walletpair.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ while [ "${1:-}" != "" ]; do
echo "Only starting wallet # 1"
;;
*)
BW_ARGS+=("$1")
BW_ARGS+=" ${1}"
;;
esac
shift
done

echo "BW_ARGS=${BW_ARGS} - overrides config"

if [ "$SIMNET" ] ; then
PAIR_ROOT=~/dextest/simnet-walletpair
CLIENT_1_ADDR="127.0.0.6:5760"
Expand Down