Merge pull request #6840

6ee9f1260 fuzz_tests: fix build error in signature fuzz test (moneromooo-monero)
This commit is contained in:
Alexander Blair 2020-09-27 16:16:54 -07:00
commit 2e83628d02
No known key found for this signature in database
GPG Key ID: C64552D877C32479
1 changed files with 1 additions and 1 deletions

View File

@ -59,6 +59,6 @@ BEGIN_INIT_SIMPLE_FUZZER()
END_INIT_SIMPLE_FUZZER()
BEGIN_SIMPLE_FUZZER()
tools::wallet2::message_signature_result_t result = wallet->verify("test", address, s);
tools::wallet2::message_signature_result_t result = wallet->verify("test", address, std::string((const char*)buf, len));
std::cout << "Signature " << (result.valid ? "valid" : "invalid") << std::endl;
END_SIMPLE_FUZZER()