From 51fd0db4b5dea6cd8dfc6c02f06fd61eb2854eec Mon Sep 17 00:00:00 2001 From: Jonathan Glanz Date: Tue, 17 Mar 2026 12:31:57 -0400 Subject: [PATCH] Fixed conflicting PR changes - we work to hard lmao --- unittests/expandauth_tests.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unittests/expandauth_tests.cpp b/unittests/expandauth_tests.cpp index 6d4cb9b284..b17295ded0 100644 --- a/unittests/expandauth_tests.cpp +++ b/unittests/expandauth_tests.cpp @@ -227,7 +227,7 @@ BOOST_FIXTURE_TEST_CASE( expandauth_add_eth_key, sysio_system::sysio_system_test const auto alice = "alice1111111"_n; // Generate an EM (ETH / secp256k1-uncompressed) key - auto em_priv_key = private_key_type::generate(); + auto em_priv_key = private_key_type::generate(private_key_type::key_type::em); auto em_pub_key = em_priv_key.get_public_key(); // Add the ETH key to alice's active permission @@ -274,7 +274,7 @@ BOOST_FIXTURE_TEST_CASE( expandauth_sign_with_eth_key, sysio_system::sysio_syste const auto alice = "alice1111111"_n; // Generate an EM (ETH) key and add it to alice's active permission - auto em_priv_key = private_key_type::generate(); + auto em_priv_key = private_key_type::generate(private_key_type::key_type::em); auto em_pub_key = em_priv_key.get_public_key(); BOOST_REQUIRE_EQUAL( success(), push_action(config::system_account_name, "expandauth"_n, mvo() @@ -301,7 +301,7 @@ BOOST_FIXTURE_TEST_CASE( expandauth_sign_with_eth_key, sysio_system::sysio_syste produce_block(); // Sanity: a random EM key that is NOT in the permission must fail - auto bad_priv_key = private_key_type::generate(); + auto bad_priv_key = private_key_type::generate(private_key_type::key_type::em); { signed_transaction trx; action reqauth_act;