Open dima74 opened 1 week ago
Looks like return should be added after executor.deny(err)? Otherwise execute! will panic in case if branch with executor.deny(err) is reached
return
executor.deny(err)
execute!
if
https://github.com/hyperledger-iroha/iroha/blob/a90040ca930a960cddb4697d04962a1038f98219/crates/iroha_executor/src/default.rs#L1305-L1309
Looks like
return
should be added afterexecutor.deny(err)
? Otherwiseexecute!
will panic in caseif
branch withexecutor.deny(err)
is reachedhttps://github.com/hyperledger-iroha/iroha/blob/a90040ca930a960cddb4697d04962a1038f98219/crates/iroha_executor/src/default.rs#L1305-L1309