Skip to content

Commit

Permalink
Fix address compilation. (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash67 authored Apr 6, 2023
1 parent 9e7d824 commit c6b26c4
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit c6b26c4

Please sign in to comment.