Sebastien Guillemot
Sebastien Guillemot
This may be kind of tedious since it requires having a synced copy of mainnet Notably, we would like to test: - The indexer - The webserver - The client...
Currently, the `.env` file contains two lines that aren't proper .env syntax: ```bash SOCKET="$(realpath ../cardano-node/bin/\\.pipe\\cardano-node)" PGPASSFILE="$(realpath secrets/.pgpass)" ``` The fact we have these is unfortunate because it means you can't...
Right now we manually iterate the genesis block to create UTXO entries. Probably it's better if CML instead provides some kind of iterator that does this for you. Possibly a...
**NOTE** DO NOT MERGE. This PR is not based on master, but on https://github.com/anweiss/cddl/pull/132 This PR: - Makes a fix to `comments_before_grpchoice` parsing - Makes a behavior change to `comments_before_group`
Presumably due to a copy-paste mistake, the condition on this flag was the opposite of what it should be. You can see this function has 3 cases where it looks...
In our application, we want to resync our redux state from localStorage when the user re-focuses the tab We do this so that if the user has multiple pages accessing...
## 💥 Regression Report Previously, the default plugins were set as follows: ```js export function getBaseSvgoConfig(config) { const baseSvgoConfig = { plugins: [{ prefixIds: true }], } if (config.icon ||...
UI lock
This is mostly a rebase of #165 but a lot has changed since then so there needs to be more manual work to get this working properly. TODO: - [...
If you look at the res folder, it contains 2 files which don't belong and should probably be removed. They should instead probably be replaced with the graphics that are...
This engine has its own color class but the standard library already has one provided in AWT. It seems like we're just copying its functionality since its uses are virtually...