Files
hush3/src/zcash/Proof.cpp
Duke Leto 0eec14fb01 desprout
2020-06-06 20:28:02 -04:00

21 lines
328 B
C++

// Copyright (c) 2019-2020 The Hush developers
#include "Proof.hpp"
#include "crypto/common.h"
#include <boost/static_assert.hpp>
#include <mutex>
namespace libzcash {
ProofVerifier ProofVerifier::Strict() {
return ProofVerifier(true);
}
ProofVerifier ProofVerifier::Disabled() {
return ProofVerifier(false);
}
}