Henry-E
Henry-E
I was downloading from a couple of different twitter handles and got this error across all of them. Then I restarted the process, running them sequentially instead, and it came...
``` printing to: cfrplus_solver_19.32756_exploitability.pickle Loading the model... OpenSpiel exception: Unknown parameter 'gamedef=GAMEDEFlimitnumPlayers = 2numRounds = 3blind = 5 10raiseSize = 10 10 20firstPlayer = 1maxRaises = 2 2 3numSuits =...
Add a `destroy=[target]` account constraint which - reallocs the account space to 8 bytes - sends the rest of the lamports to `[target]` - assigns the `CLOSED_ACCOUNT_DISCRIMINATOR This will prevent...
Currently a placeholder pull request for adding a close market function. Still TODO Questions for @armaniferrante - [x] How to check that the events, bid and asks queues are empty...
In the prune orders function, there's a `remove all` function that iterates over both the bid and ask queues to find orders owned by a particular open orders account. The...
Is there any reason for serum to charge high bps fees for trades between "stable" coins like the usdc/usdt trading pair? The changes needed to make this happen might have...
The issue arrises from the fact that `OrderPayerTokenAccount` changes between quote and the base currency token accounts based on whether buying or selling is happening. Whereas `coinWallet` is always the...
The only way to load an open orders account is to first load the market variable ``` let open_orders = MarketState::load(&ctx.accounts.market.market, &dex::ID) .unwrap() .load_orders_mut(&ctx.accounts.open_orders, None, &dex::ID, None) .unwrap(); ``` It...
Saw an issue made in the serum-ts that appears to be more related to the functionality of the serum dex, than the ts library. https://github.com/project-serum/serum-ts/issues/61
`#[account(mut)]` I recently forget to put `mut` above an associated account whose data was being changed. This didn't raise an error, it just failed silently. Ideally this would raise an...