When using truffle-solidity-loader like in the documentation of github, it is compiling the contracts correctly, but not running the migrations.
Setup truffle-solidity-loader like in the documentation and import a solidity contract in your code.
Truffle migrations should run.
Truffle migrations don't run.
truffle version): 5.0.10 (truffle-solidity-loader 0.1.10)node --version): 10.15.3npm --version): 6.4.1 (yarn 1.15.2)seems to be because of the --from change. address is still being provided when migrating but it should be omitted
problem seems to be here: https://github.com/trufflesuite/truffle/blob/develop/packages/truffle-core/lib/commands/migrate.js#L149
breaks https://truffleframework.com/docs/truffle/reference/configuration#networks "from" configuration
fix for yarn by adding the following to package.json
"resolutions": {
"truffle-solidity-loader/truffle-core": "5.0.8"
}
Hey @imbenwolf ! Thanks for reporting this and sharing your findings. Will take a look. 馃
Ah, I see what happened. Thanks again for sharing your findings! Should have a fix in soon.