diff --git a/README.md b/README.md index 746672b..0fad2f9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Métier-server +[![format](https://github.com/open-transactions/metier-server/workflows/format/badge.svg)](https://github.com/Open-Transactions/metier-server/actions) +[![iwyu](https://github.com/open-transactions/metier-server/workflows/iwyu/badge.svg)](https://github.com/Open-Transactions/metier-server/actions) +[![compile](https://github.com/open-transactions/metier-server/workflows/compile/badge.svg)](https://github.com/Open-Transactions/metier-server/actions) + Métier-server is a non-validating blockchain full node based on [libopentxs](https://github.com/Open-Transactions/opentxs) which operates on multiple networks simultaneously. It provides additional features on top of the baseline P2P protocol of the respective reference implementations of the supported blockchains which support libopentxs-based wallet applications. diff --git a/src/metier_server/main.cpp b/src/metier_server/main.cpp index 806ab59..abbca96 100644 --- a/src/metier_server/main.cpp +++ b/src/metier_server/main.cpp @@ -18,9 +18,12 @@ #include #include +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wheader-hygiene" namespace ot = opentxs; namespace po = boost::program_options; using namespace std::literals; +#pragma GCC diagnostic pop using Type = ot::blockchain::Type; using Enabled = ot::Map;