Merge pull request #2377 from AntelopeIO/trace-api-no-sync

TraceAPI: Remove sync() to improve performance
This commit is contained in:
Kevin Heifner
2024-04-04 21:40:47 -05:00
committed by GitHub
@@ -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;
}