Tests (majority) on master branch that require indy-sdk fail on the call to open_pool_ledger which is calling indy_open_pool_ledger. Easiest way to reproduce is to run plenum/test/sdk/test_sdk_bindings.py. The same tests work on older branches, the difference being the format of genesis files.
Failing test have this genesis file (new txn format)
It looks like indy-sdk is not able to parse new txn format
By using the libindy.so and libindy-crypto.so build from master branch from respective repositories, i get the error _load_cdll: Can't load libindy: .... libindy.so: undefined symbol: crypto_pwhash while running plenum tests (try running the file mentioned above). I have libsodium18 and libsodium18-dev installed, do i need a newer version of libsodium for crypto_pwhash?
What version of libindy do you use? Please note, that SDK needs to be updated locally from time to time. The version is pinned in setup files.
The required version of SDK:
Tests (majority) on master branch that require indy-sdk fail on the call to
open_pool_ledger
which is callingindy_open_pool_ledger
. Easiest way to reproduce is to runplenum/test/sdk/test_sdk_bindings.py
. The same tests work on older branches, the difference being the format of genesis files. Failing test have this genesis file (new txn format)Passing tests have this genesis file (old txn format)
It looks like indy-sdk is not able to parse new txn format
By using the
libindy.so
andlibindy-crypto.so
build from master branch from respective repositories, i get the error_load_cdll: Can't load libindy: .... libindy.so: undefined symbol: crypto_pwhash
while running plenum tests (try running the file mentioned above). I havelibsodium18
andlibsodium18-dev
installed, do i need a newer version of libsodium forcrypto_pwhash
?