File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1120,7 +1120,8 @@ impl SignerDb {
1120
1120
tenure_extend_timestamp
1121
1121
}
1122
1122
1123
- /// Mark a block as globally accepted
1123
+ /// Mark a block as globally accepted. This removes the block from the pending
1124
+ /// validations table. This does **not** update the block's state in SignerDb.
1124
1125
pub fn mark_block_globally_accepted ( & self , block_info : & mut BlockInfo ) -> Result < ( ) , DBError > {
1125
1126
block_info
1126
1127
. mark_globally_accepted ( )
@@ -1129,7 +1130,8 @@ impl SignerDb {
1129
1130
Ok ( ( ) )
1130
1131
}
1131
1132
1132
- /// Mark a block as globally rejected
1133
+ /// Mark a block as globally rejected. This removes the block from the pending
1134
+ /// validations table. This does **not** update the block's state in SignerDb.
1133
1135
pub fn mark_block_globally_rejected ( & self , block_info : & mut BlockInfo ) -> Result < ( ) , DBError > {
1134
1136
block_info
1135
1137
. mark_globally_rejected ( )
You can’t perform that action at this time.
0 commit comments