File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
crates/prism/src/node_types Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ impl LightClient {
80
80
81
81
// todo: verify adjacency to last heights, <- for this we need some sort of storage of epochs
82
82
for epoch_json in epoch_json_vec {
83
- let prev_commitment = & epoch_json. prev_commitment ;
84
- let current_commitment = & epoch_json. current_commitment ;
83
+ let _prev_commitment = & epoch_json. prev_commitment ;
84
+ let _current_commitment = & epoch_json. current_commitment ;
85
85
86
86
// if the user does not add a verifying key, we will not verify the signature,
87
87
// but only log a warning on startup
Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ pub struct Sequencer {
54
54
prover_client : Arc < Mutex < ProverClient > > ,
55
55
56
56
proving_key : SP1ProvingKey ,
57
+ // fix clippy warning, keep verifying_key for future use
58
+ #[ allow( dead_code) ]
57
59
verifying_key : SP1VerifyingKey ,
58
60
59
61
epoch_buffer_tx : Arc < Sender < FinalizedEpoch > > ,
You can’t perform that action at this time.
0 commit comments