barretenberg
Loading...
Searching...
No Matches
get_bytecode.hpp
1#pragma once
2#include "exec_pipe.hpp"
3
7inline std::vector<uint8_t> get_bytecode(const std::string& bytecodePath)
8{
9 std::string command = "gunzip -c \"" + bytecodePath + "\"";
10 return exec_pipe(command);
11}