From ef18e8a9dd4df938584f059b74aba66a1b12ee0e Mon Sep 17 00:00:00 2001 From: serkixenos Date: Mon, 21 Feb 2022 12:34:58 -0400 Subject: [PATCH] Fix Crypto DH test For reference, checkout https://github.com/search?q=005aa69c0a97edcc9e8eb887f8b4be8e090b8299&type=commits --- tests/crypto/dh_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crypto/dh_test.cpp b/tests/crypto/dh_test.cpp index e972b78..780afe7 100755 --- a/tests/crypto/dh_test.cpp +++ b/tests/crypto/dh_test.cpp @@ -53,7 +53,7 @@ BOOST_AUTO_TEST_CASE(dh_test) alice.p.clear(); alice.p.push_back(100); alice.p.push_back(2); BOOST_CHECK( !alice.validate() ); alice.p = bob.p; - alice.g = 9; + alice.g = 1; BOOST_CHECK( !alice.validate() ); // It ain't easy...