1

Sending native tokens SMR with Shimmer's wallet.rs in existing Python output the following error:

ValueError: error accessing storage: IO error: lock hold by current process, acquire time 1675876083 acquiring thread 2310207: ./alice-database/LOCK: No locks available

Antonio Nardella
  • 1,074
  • 5
  • 17

1 Answers1

1

In this case the code was setting up the account manger twice.

wallet = IotaWallet('./alice-database', client_options, coin_type, secret_manager)

It was resolved by setting up the account manager only once.

Antonio Nardella
  • 1,074
  • 5
  • 17