Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "barretenberg/plonk/proof_system/verification_key/sol_gen.hpp"
#include "barretenberg/plonk/proof_system/verification_key/verification_key.hpp"
#include "barretenberg/srs/factories/crs_factory.hpp"
#include "contract.hpp"

namespace acir_proofs {

Expand Down Expand Up @@ -148,7 +149,7 @@ std::string AcirComposer::get_solidity_verifier()
{
std::ostringstream stream;
output_vk_sol(stream, verification_key_, "UltraVerificationKey");
return stream.str();
return stream.str() + CONTRACT_SOURCE;
}

/**
Expand Down
Loading