Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix address compilation. #329

Merged
merged 1 commit into from
Apr 6, 2023
Merged
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
16 changes: 8 additions & 8 deletions cpp/src/barretenberg/stdlib/primitives/address/address.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
#include "barretenberg/stdlib/primitives/point/point.hpp"
#include "barretenberg/stdlib/primitives/witness/witness.hpp"

namespace plonk {
namespace proof_system::plonk {
namespace stdlib {

using barretenberg::fr;
using numeric::uint256_t;
using plonk::stdlib::bool_t;
using plonk::stdlib::field_t;
using plonk::stdlib::group;
using plonk::stdlib::pedersen_commitment;
using plonk::stdlib::point;
using plonk::stdlib::witness_t;
using stdlib::bool_t;
using stdlib::field_t;
using stdlib::group;
using stdlib::pedersen_commitment;
using stdlib::point;
using stdlib::witness_t;

// Native type
class address {
Expand Down Expand Up @@ -139,4 +139,4 @@ template <typename Composer> class address_t {
};

} // namespace stdlib
} // namespace plonk
} // namespace proof_system::plonk