Przeglądaj źródła

script/research/antisapling/antisapling.md: corrections

aggstam 3 lat temu
rodzic
commit
8c0cad263b
1 zmienionych plików z 1 dodań i 4 usunięć
  1. 1 4
      script/research/antisapling/antisapling.md

+ 1 - 4
script/research/antisapling/antisapling.md

@@ -28,10 +28,7 @@
 - Burnt coin constrain:
 - Burnt coin constrain:
     Constrain burnt coin nullifier in reward proof, so we ensure same coin is used in burn and reward steps of the sequence.
     Constrain burnt coin nullifier in reward proof, so we ensure same coin is used in burn and reward steps of the sequence.
 
 
-- Mint coin constrain:
-    Constrain minted coin poseidon in reward proof, so we ensure same coin is used in reward and mint steps of the sequence.
-
 - Lottery seed:
 - Lottery seed:
     Minted coin serial to be derived from burnt coin serial: minted_serial = poseidon_hash(NONCE_PREFIX, secret_key, burnt_coin_serial, ZERRO).
     Minted coin serial to be derived from burnt coin serial: minted_serial = poseidon_hash(NONCE_PREFIX, secret_key, burnt_coin_serial, ZERRO).
     Deterministic function code block: https://github.com/darkrenaissance/darkfi/blob/master/src/consensus/lead_coin.rs#L231-L240
     Deterministic function code block: https://github.com/darkrenaissance/darkfi/blob/master/src/consensus/lead_coin.rs#L231-L240
-    Use minted coin serial to calculate lottery seed in proof: SEED = seed = poseidon_hash(SEED_PREFIX, minted_serial, ZERO);
+    Use burnt coin serial to calculate lottery seed in proof: seed = poseidon_hash(SEED_PREFIX, burnt_serial, ZERO);