SuperNET icon indicating copy to clipboard operation
SuperNET copied to clipboard

Results 60 SuperNET issues
Sort by recently updated
recently updated
newest added

We came across a bug in mm where it will incorrectly send a failed message telling us a trade has been cancelled when it hasn't. This seems to be what...

If Alice places a GTC order that can be instantly matched with Bob it works fine. However, if Alice places a GTC order that can't instantly be matched, once there...

In https://github.com/jl777/SuperNET/issues/764 you said this is the meaning of the values array: ``` static char *txnames[] = { "alicespend", "bobspend", "bobpayment", "alicepayment", "bobdeposit", "otherfee", "myfee", "bobrefund", "bobreclaim", "alicereclaim", "aliceclaim" };...

I found a reproducible issue causing `marketmaker` to crash when calling `swapstatus`. I'm trying to resolve the "stuck swaps" issue by calling `swapstatus` on app start. It works, but if...

Thanks for implementing the `failed` message on non-matched trades. It seems that if we get `reserved` or `connect` messages we never get a failed event, even if the trade never...

`PIZZA` returns a price when calling the `portfolio` endpoint. I assume this is because Marketmaker uses the coinmarketcap API and there actually is a real currency called `PIZZA`, so it...

on success `sendrawtransaction` return the txid. But it's not formatted as JSON it's literally just the txid: ```js d4173e42eab51cee52af6f878567d5bbd97b394ec156a4ee62d4ef570b53f725 ``` Which throws an error in our API wrapper library: ```...

Related: https://github.com/lukechilds/hyperdex/issues/129 We're trying to add a cancel button to allow users to panic cancel incorrect trades. If the trade hasn't been matched yet it normally works fine and we...

If I make a few concurrent connections to `marketmaker` the connections are just dropped which makes it hard to know whats going on or provide useful information in a GUI...

Using the new websocket API I'm getting messages with the following `method` property: "request" "reserved" "connect" "connected" "tradestatus" "postprice" Are you able to give a bit more information on what...