Dmitry Zotov
Dmitry Zotov
It seems that `libp2p` config parameter does not passed to an underlying `libp2p.js` module. I tried to create a private IPFS network: ```ts async connect(){ process.env.LIBP2P_FORCE_PNET = "1" // enable...
**UPD:** can't reproduce it on version `0.15.2`
Same problem using [this example](https://github.com/feross/simple-peer#data-channels) with Create React App
this [solution](https://github.com/hyperledger/composer/issues/3735#issuecomment-381065534) works for me. your `startFabric.sh` path may differ from that in the solution. For example for me it is `fabric-scripts\hlfv12\startFabric.sh`
Correct me if I'm wrong, but Oracle does not support arrays out of the box. You need to define it like custom type, e.g. `CREATE TYPE string_array AS VARRAY(100) OF...
I am using a workaround for this issue: 1. find max data length for each column 2. set column width equal to found max value example for typescript: ```ts const...
@surfingtomchen, you can divide the text length by the column width (rounded up). E.g. text length is 27 and col width is 10 - row height will be 3. Btw,...
Duplicate of #3357
1. `simple-enum` is kinda hack for the databases that don't have native `enum` type support. You don't need to use it in postgres since pg has native `enum` support. 2....
thank you for contribution!