package difficulty import "testing" import "github.com/deroproject/derosuite/crypto" func Test_Next_Difficulty(t *testing.T) { target_seconds := uint64(120) var cumulative_difficulties []uint64 var timestamps []uint64 calculated := Next_Difficulty(timestamps, cumulative_difficulties, target_seconds) expected := uint64(1) if calculated != expected { t.Errorf("Difficulty should be %d found %d\n", expected, calculated) } timestamps = append(timestamps, 1) cumulative_difficulties = append(cumulative_difficulties, 1) calculated = Next_Difficulty(timestamps, cumulative_difficulties, target_seconds) expected = uint64(1) if calculated != expected { t.Errorf("Difficulty should be %d found %d\n", expected, calculated) } timestamps = append(timestamps, 1) cumulative_difficulties = append(cumulative_difficulties, 3) calculated = Next_Difficulty(timestamps, cumulative_difficulties, target_seconds) expected = uint64(3) if calculated != expected { t.Errorf("Difficulty should be %d found %d\n", expected, calculated) } timestamps = append(timestamps, 1) cumulative_difficulties = append(cumulative_difficulties, 10) calculated = Next_Difficulty(timestamps, cumulative_difficulties, target_seconds) expected = uint64(18) if calculated != expected { t.Errorf("Difficulty should be %d found %d\n", expected, calculated) } timestamps = append(timestamps, 1) cumulative_difficulties = append(cumulative_difficulties, 20) calculated = Next_Difficulty(timestamps, cumulative_difficulties, target_seconds) expected = uint64(28) if calculated != expected { t.Errorf("Difficulty should be %d found %d\n", expected, calculated) } } /* * raw data from daemon * * /* * 2018-01-07 20:18:21.157 [P2P4] INFO global src/cryptonote_core/blockchain.cpp:1436 ----- BLOCK ADDED AS ALTERNATIVE ON HEIGHT 16163 id: PoW: <28b6fdf6655c45631c28be02bc528342b25fe913696911b788a01e0b0a000000> difficulty: 77897895 2018-01-07 21:17:40.182 [P2P9] INFO global src/cryptonote_protocol/cryptonote_protocol_handler.inl:1521 SYNCHRONIZED OK 2018-01-07 22:04:14.368 [P2P2] INFO global src/p2p/net_node.inl:258 Host 125.161.128.47 blocked. status Height: 16294/16294 (100.0%) on mainnet, not mining, net hash 780.13 kH/s, v6, up to date, 0(out)+15(in) connections, uptime 0d 10h 29m 2s 2018-01-08 03:14:37.490 [P2P1] INFO global src/cryptonote_core/blockchain.cpp:1436 ----- BLOCK ADDED AS ALTERNATIVE ON HEIGHT 13618 id: PoW: difficulty: 90940906 */ func Test_CheckPowHash(t *testing.T) { hash := crypto.Hash{0x28, 0xb6, 0xfd, 0xf6, 0x65, 0x5c, 0x45, 0x63, 0x1c, 0x28, 0xbe, 0x02, 0xbc, 0x52, 0x83, 0x42, 0xb2, 0x5f, 0xe9, 0x13, 0x69, 0x69, 0x11, 0xb7, 0x88, 0xa0, 0x1e, 0x0b, 0x0a, 0x00, 0x00, 0x00} difficulty := uint64(77897895) if !CheckPowHash(hash, difficulty) { t.Errorf("POW check failedm, severe BUG\n") } hash = crypto.Hash{0xb3, 0x4c, 0xaa, 0x51, 0x54, 0x3b, 0x82, 0xef, 0xee, 0x03, 0x36, 0x67, 0x7d, 0xd8, 0x25, 0xe3, 0x23, 0x62, 0x20, 0xe6, 0x9d, 0x2f, 0x09, 0x0c, 0x58, 0xdf, 0x0b, 0x3e, 0x05, 0x00, 0x00, 0x00} difficulty = uint64(77897895) if !CheckPowHash(hash, difficulty) { t.Errorf("POW check 2 failed, severe BUG\n") } }