diff --git a/nano/secure/common.cpp b/nano/secure/common.cpp index c407a0679..7922bb01d 100644 --- a/nano/secure/common.cpp +++ b/nano/secure/common.cpp @@ -67,7 +67,7 @@ network (network_a), ledger (network), voting (network), node (network), portmap unsigned constexpr kdf_full_work = 64 * 1024; unsigned constexpr kdf_test_work = 8; kdf_work = network.is_test_network () ? kdf_test_work : kdf_full_work; - header_magic_number = network.is_test_network () ? std::array{ { 'R', 'A' } } : network.is_beta_network () ? std::array{ { 'R', 'B' } } : std::array{ { 'R', 'C' } }; + header_magic_number = network.is_test_network () ? std::array{ { 'R', 'A' } } : network.is_beta_network () ? std::array{ { 'N', 'B' } } : std::array{ { 'R', 'C' } }; } nano::ledger_constants::ledger_constants (nano::network_constants & network_constants) :