Skip to content

Commit

Permalink
Update qx.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Qsilver97 authored Apr 18, 2024
1 parent 76f5832 commit 5b07f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qserver/qx.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,14 +200,14 @@ void process_contractresponse(uint32_t dejavu,int32_t peerid,char *ipaddr,uint8_
{
if ( ASKvu[peerid][i] == dejavu )
{
disp_assetorders(-1,ASSETS[i].assetname,data,datasize);
disp_assetorders(-1,ASSETS[i].name,data,datasize);
ASKvu[peerid][i] = 0;
ASKvutick[peerid][i] = 0;
return;
}
if ( BIDvu[peerid][i] == dejavu )
{
disp_assetorders(1,ASSETS[i].assetname,data,datasize);
disp_assetorders(1,ASSETS[i].name,data,datasize);
BIDvu[peerid][i] = 0;
BIDvutick[peerid][i] = 0;
return;
Expand Down

0 comments on commit 5b07f86

Please sign in to comment.