Xavier Arias Seguí
Xavier Arias Seguí
Hi, the contract `Greeter` provided in this project has to be compiled with Solidity version 0.4.25. If you install `solc` in version 5 the contract won't compile. We will update...
Thanks Nicolas. This was actually my approach, defining behavior's event handlers with guards that act as permission control for role actions. The actions are then executed by capacities, so every...
Yes the release is ready, maybe @h2mch can help on this?
Hi, could you give more context? - OS: Linux, MacOS, Windows? - Plugin version - Project POM Thanks
Which version of Solidity compiler are you using? These warnings are printed by solc not the plugin itself. We are soon going to release a new plugin version that will...
Hi. Please can you provide more context ? Eg the version of the plugin you are using? This seems linked to an issue that has already been fixed in the...
Are you using the Maven or the Gradle plugin? If so, this issue should be opened in the Gradle plugin repository.
This code snippet workarounds this issue: ``` compileKotlin { kotlinOptions.jvmTarget = "1.8" dependsOn 'generateContractWrappers' } compileTestKotlin { kotlinOptions.jvmTarget = "1.8" dependsOn 'generateTestContractWrappers' } sourceSets { main.kotlin.srcDirs += "${web3j.generatedFilesBaseDir}/main/java" test.kotlin.srcDirs +=...
Hi, did you try to add the imported directory to the `allowPaths` solidity configuration? Eg: ``` solidity { allowPaths = ["$projectDir/path/to/imported/dir"] } ```
Is that working?