diff --git a/tests/unit/CryptonoteTest.php b/tests/unit/CryptonoteTest.php index 2988842..cbd4459 100644 --- a/tests/unit/CryptonoteTest.php +++ b/tests/unit/CryptonoteTest.php @@ -51,11 +51,11 @@ public function testGenNewHexSeed(): void // $this->assertEquals($this->testPrivateViewKey, $result); // } - // public function testPkFromSk(): void - // { - // $result = $this->cr->pk_from_sk($this->testPrivateSpendKey); - // $this->assertEquals($this->testPubSpendKey, $result); - // } + public function testScReduce(): void + { + $result = $this->cr->sc_reduce("65"); + $this->assertEquals("65", $result); + } public function testEncodeAddress(): void {