MCPcopy Create free account
hub / github.com/BitVM/BitVM / push_verifier_nonces

Method push_verifier_nonces

bridge/src/graphs/peg_out.rs:299–311  ·  view source on GitHub ↗
(
        &mut self,
        verifier_context: &VerifierContext,
    )

Source from the content-addressed store, hash-verified

297 }
298
299 fn push_verifier_nonces(
300 &mut self,
301 verifier_context: &VerifierContext,
302 ) -> HashMap<Txid, HashMap<usize, SecNonce>> {
303 self.all_presigned_txs_mut()
304 .map(|tx_wrapper| {
305 (
306 tx_wrapper.tx().compute_txid(),
307 tx_wrapper.push_nonces(verifier_context),
308 )
309 })
310 .collect()
311 }
312}
313
314impl PegOutGraph {

Callers

nothing calls this directly

Calls 3

all_presigned_txs_mutMethod · 0.80
push_noncesMethod · 0.80
txMethod · 0.45

Tested by

no test coverage detected