Chris

Results 19 comments of Chris

I have fixed this in a fork: https://github.com/forgetso/python-bittrex/commit/6d0cb933e47a64a4972f621695b3362e66ec191a

Hi, can't wait to see cross contract testing. Where has the board for ink v4 gone? This link 404s https://github.com/orgs/paritytech/projects/30/views/2

Thanks for the link! > Yes, me too! How are you doing it right now? redspot + scripting? We are not currently testing cross contract calls although we would have...

@CyberCyclone You can get rid of the error in rocminfo by installing kmod. Run the following in the docker container: ``` apt-get update -y apt-get install kmod ``` Presumably kmod...

The solution to the `ContractTrapped` error was to update all my dependencies. e.g. ``` "@polkadot/api": "^6.5.2", "@polkadot/api-contract": "^6.5.2", "@polkadot/types": "^6.5.2", "@polkadot/util": "^7.6.1" ``` So many fast moving parts in this...

Hi @cmichi , I'm not sure what that would be. The contract `toml` is the same as most of the examples in the ink repo. You can view it [here](https://github.com/prosopo-io/protocol/blob/master/contracts/Cargo.toml).

Thanks for the info. I'll look into changing to `Mapping` when it's released. If I need to debug before then I'll try silencing the events.

Hi, I'm reopening this as I now have a contract built in debug mode and I still cannot get the contracts node to print anything out. Is it normal for...

Thanks @cmichi. Is it also true that debug only prints on `read` and not `execute`? I only seem to receive debug messages when reading the contract functions.