You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ "This price is <strong style='color:red;'>" + (_this.state.bestBuyPrice / price).toFixed(1) + " times lower</strong> than current best price for " + _this.state.selectedToken.name + ".<br/><br/>"
124503
+
+ "Do you still want to place the order?</p>"
124504
+
)
124505
+
.set({
124506
+
onok: function(e) {
124507
+
console.log(e);
124508
+
0 === e.index &&
124509
+
_this.order.call(
124510
+
_this.self,
124511
+
_this.state.selectedToken.addr,
124512
+
_this.state.selectedBase.addr,
124513
+
'sell',
124514
+
amount,
124515
+
price,
124516
+
expires
124517
+
);
124518
+
},
124519
+
}) :
124459
124520
_this.order.call(
124460
124521
_this.self,
124461
124522
_this.state.selectedToken.addr,
@@ -124486,8 +124547,9 @@
124486
124547
'Your order is in cross with the best buy order in the order book (price = ' +
0 commit comments