File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
core/src/consensus/tendermint Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -725,10 +725,6 @@ impl TendermintInner {
725
725
self . broadcast_proposal_block ( encoded:: Block :: new ( sealed_block. rlp_bytes ( ) ) ) ;
726
726
}
727
727
728
- fn on_verified_proposal ( & self , verified_block_data : encoded:: Block ) {
729
- self . broadcast_proposal_block ( verified_block_data) ;
730
- }
731
-
732
728
fn verify_block_basic ( & self , header : & Header ) -> Result < ( ) , Error > {
733
729
let seal_length = header. seal ( ) . len ( ) ;
734
730
let expected_seal_fields = self . seal_fields ( header) ;
@@ -1207,11 +1203,6 @@ impl ConsensusEngine<CodeChainMachine> for Tendermint {
1207
1203
guard. is_proposal ( header)
1208
1204
}
1209
1205
1210
- fn on_verified_proposal ( & self , verified_block_data : encoded:: Block ) {
1211
- let guard = self . inner . lock ( ) ;
1212
- guard. on_verified_proposal ( verified_block_data)
1213
- }
1214
-
1215
1206
fn set_signer ( & self , ap : Arc < AccountProvider > , address : Address , password : Option < Password > ) {
1216
1207
let mut guard = self . inner . lock ( ) ;
1217
1208
guard. set_signer ( ap, address, password)
You can’t perform that action at this time.
0 commit comments