Malte Kliemann
Malte Kliemann
Storage overlay prevents the worst effects of double reads, but the official suggestion is still to avoid excessive use of this feature: https://substrate.stackexchange.com/questions/2574/clarity-on-storage-read-write-caching. My suggestion is to use the following...
I would like to add a function which returns the assets belonging to a particular market. IMO This should be a member function of `Market`. Problem is that the `Market`...
Whatever pallet requires standard math operations (checked, I guess), it should require that the runtime's `Balance` type offers those. We then need a trait which any struct which implements checked...
Advised markets should give use the option to auto-deploy a pool when the market is approved. One implementation would be to allow users to actually create a pool for a...
Maybe the user should get a chance to confirm the edit. Maybe the rules should be: If the edit is accepted (resp. rejected), the market is automatically approved (resp. rejected).
I'm sorry that I can't give a detailed description, but it appears as though the filter `"*.rs"` matches the file `errors.py` (with emphasis: erro **rs** .py), which shouldn't happen with...
The exact error (for `UseQt`) is: ``` LINK Pass 1: command "C:\PROGRA~2\MICROS~1\2019\ENTERP~1\VC\Tools\MSVC\1429~1.300\bin\Hostx64\x64\link.exe /nologo @CMakeFiles\UseQtTest.dir\objects1.rsp /out:UseQtTest.exe /implib:UseQtTest.lib /pdb:D:\a\DrMock\DrMock\build\tests\integration\UseQtTest.pdb /version:0.0 /machine:x64 /debug /INCREMENTAL /subsystem:console DrMockQtMock.lib ..\..\src\DrMock.lib D:\a\DrMock\Qt\5.15.2\msvc2019_64\lib\Qt5Testd.lib D:\a\DrMock\Qt\5.15.2\msvc2019_64\lib\Qt5Cored.lib kernel32.lib user32.lib gdi32.lib winspool.lib...
If you `cd` into the project directory on macOS Terminal using the incorrect casing (e.g. `cd DrMock` if the directory is called `drmock`), then the following occurs: ``` In file...
The following test raises a strange error message: ```cpp DRTEST_DATA(data_without_test) { } // DRTEST_TEST(data_without_test) // { // } ``` The error message is: ```shell TEST data_without_test *FAIL data_without_test: std::exception ```...
### What does it do? ### What important points should reviewers know? ### Is there something left for follow-up PRs? ### What alternative implementations were considered? ### Are there relevant...