Я бы предположил, что сравнивать строки будет так же просто, как и делать:
function withStrs(string memory a, string memory b) internal {
if (a == b) {
// do something
}
}
Но при этом выдается ошибка Operator == not compatible with types string memory and string memory
.
Какой правильный путь?