Skip to content

Commit acc73bc

Browse files
committed
fix build
1 parent f9c8770 commit acc73bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

barretenberg/cpp/src/barretenberg/client_ivc/client_ivc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ ClientIVC::Proof ClientIVC::Proof::from_file_msgpack(const std::string& filename
699699
ClientIVC::VerificationKey ClientIVC::get_vk() const
700700
{
701701
BB_ASSERT_EQ(verification_queue.size(), 1UL);
702-
BB_ASSERT(verification_queue.front().type == QUEUE_TYPE::MEGA, true);
702+
BB_ASSERT_EQ(verification_queue.front().type == QUEUE_TYPE::MEGA, true);
703703
auto verification_key = verification_queue.front().honk_vk;
704704
return { verification_key,
705705
std::make_shared<ECCVMVerificationKey>(),

0 commit comments

Comments
 (0)