Browse Source

Merge pull request #17 from DenioD/master

fix checkpoint to prevent "bad tx join split bad-txns-joinsplit-requirements-not-met" issue
checkpoints
Duke Leto 4 years ago
committed by GitHub
parent
commit
e3d77ba543
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lib/src/lightclient/checkpoints.rs

5
lib/src/lightclient/checkpoints.rs

@ -23,8 +23,9 @@ fn get_test_checkpoint(height: u64) -> Option<(u64, &'static str, &'static str)
fn get_main_checkpoint(height: u64) -> Option<(u64, &'static str, &'static str)> {
let checkpoints: Vec<(u64, &str, &str)> = vec![
(170947, "0000000269bfc4db6f23aff43dba54afe20398018082cd8b5e90644257b5adc9",
"0000000269bfc4db6f23aff43dba54afe20398018082cd8b5e90644257b5adc9"
(177916, "0000000173fddfc716b3e7c904e3b271215df72e0af2dba7200257fec6aef2b5",
""
)
];

Loading…
Cancel
Save