ricardo-cavalheiro
ricardo-cavalheiro
I'm facing the same issue. It looks like that running `peer lifecycle chaincode approveformyorg` without the `--init-required` flag works just fine. Maybe it's a legacy API? I mean, for versions...
> sudo apt-get install libxcb-icccm4 libfontconfig1 libxcb-glx0 libx11-xcb1 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xkb1 libxkbcommon-x11-0 libgl1 > > 2. TEST > > And maybe: sudo apt install...
> One possible usecase here is when saving connected wallet to a database (say a dapp that returns auth token). Without explicitly converting to EIP55 address, the record in database...
One (temporary) way to solve it, is to declare your own typings. _`src/@types/mongo-mock.d.ts`_ ```ts declare module 'mongo-mock' { import type { MongoClient as IMongoClient } from 'mongodb' export class MongoClient...
@LinusU It kind sucks not knowing what methods the lib is exposing. I guess only the mongo-mock related typings should be added, otherwise one might end up calling a method...
@LinusU Right now I'm just testing the business logic via integration tests. In practice, I only use `insertOne`, `findOne`, `db().collection()`, etc to make sure the data is being saved/retrieved. I'm...