flushTransaction() lock

This commit is contained in:
Tim Olson
2023-11-11 00:34:51 -04:00
parent 344445587d
commit 580f0f0f9b
2 changed files with 17 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
export function applyFills( orderStatus, filled ) {
console.log('apply fills', orderStatus, filled)
// console.log('apply fills', orderStatus, filled)
orderStatus[4] = filled[0][0]
orderStatus[5] = filled[0][1]
for( const i in filled[1] ) {
@@ -7,5 +7,5 @@ export function applyFills( orderStatus, filled ) {
orderStatus[6][i] = filledIn
orderStatus[7][i] = filledOut
}
console.log('applied fills', orderStatus)
// console.log('applied fills', orderStatus)
}