Remove sync() call to improve performance

This commit is contained in:
Kevin Heifner
2024-04-04 09:44:02 -05:00
parent 5d56c4b4d6
commit a7b948afea
@@ -66,7 +66,6 @@ namespace eosio::trace_api {
const auto offset = file.tellp();
file.write(data.data(), data.size());
file.flush();
file.sync();
return offset;
}