Fix fuzzer for bytes and uint

This commit is contained in:
Anthony Laibe 2018-08-09 10:38:01 +01:00 committed by Pascal Precht
parent 2d1e081c15
commit 4526c1a871
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class Profiler {
self.profileJSON(contractName, (err, table) => {
if (err) {
return res.send({error: err});
return res.send({error: err.message});
}
res.send(table);
});