barretenberg
Loading...
Searching...
No Matches
get_witness.hpp
1#pragma once
2#include "exec_pipe.hpp"
3
8inline std::vector<uint8_t> get_witness_data(const std::string& path)
9{
10 std::string command = "cat " + path + " | gunzip";
11 return exec_pipe(command);
12}