Wade King
Wade King
Resolved by: https://github.com/bcgov/bc-wallet-mobile/pull/1858
could we also do this for credentials and proofs?
hmm, I can confirm that the sock file doesn't exist. Might be an issue with the installation?
https://stackoverflow.com/questions/4448467/cant-connect-to-local-mysql-server-through-socket-var-lib-mysql-mysql-sock `localhost` seems to be the issue. When localhost is used mysql tries to connect through the daemon sock file (which doesn't exist). Changing it to `127.0.0.1` may resolve the...
Can this issue be closed now?
@genaris is there an easy way to test it on node and react native? from my understanding it only pulls the binaries when you run npm install from the npm...
I made some changes to the binary to make it work with react native. For some reason the `#[async_trait]` macro wasn't working well with react native so I removed it...
@genaris @TimoGlastra @andrewwhitehead could I get a quick review on this please?
I'd get this error message on the build with async trait after fetching a schema definition from the ledger: `Fatal signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0x76d39d6fa0 in...
it shouldn't segfault because it doesn't in node... but for some reason it does on react native maybe because it's compiled for mobile architectures (arm64 and eabi). My hunch is...