@@ -370,7 +370,7 @@ func TestWaitIfCompetingBlock_RecordSignedNonceCalledBeforeBroadcast(t *testing.
370370 assert .True (t , recordCalled , "RecordSignedNonce should be called before broadcast" )
371371}
372372
373- func TestWaitIfCompetingBlockForNode_NoCompetingBlockForAnyKey (t * testing.T ) {
373+ func TestWaitIfCompetingBlock_NoCompetingBlockForAnyKey (t * testing.T ) {
374374 t .Parallel ()
375375
376376 sr := createSubroundSignatureForCompetingBlockTests (
@@ -387,7 +387,7 @@ func TestWaitIfCompetingBlockForNode_NoCompetingBlockForAnyKey(t *testing.T) {
387387 assert .False (t , result , "should return false when no key has a competing block" )
388388}
389389
390- func TestWaitIfCompetingBlockForNode_SameHashForAllKeys (t * testing.T ) {
390+ func TestWaitIfCompetingBlock_SameHashForAllKeys (t * testing.T ) {
391391 t .Parallel ()
392392
393393 currentHash := []byte ("current_hash" )
@@ -405,7 +405,7 @@ func TestWaitIfCompetingBlockForNode_SameHashForAllKeys(t *testing.T) {
405405 assert .False (t , result , "should return false when all keys signed the same hash" )
406406}
407407
408- func TestWaitIfCompetingBlockForNode_SelfKeyHasCompetingBlock (t * testing.T ) {
408+ func TestWaitIfCompetingBlock_SelfKeyHasCompetingBlock (t * testing.T ) {
409409 container := consensusMocks .InitConsensusCore ()
410410 container .SetRoundHandler (& testscommon.RoundHandlerMock {
411411 TimeDurationCalled : func () time.Duration {
@@ -465,7 +465,7 @@ func TestWaitIfCompetingBlockForNode_SelfKeyHasCompetingBlock(t *testing.T) {
465465 assert .GreaterOrEqual (t , elapsed , 40 * time .Millisecond , "should have waited for competing block delay" )
466466}
467467
468- func TestWaitIfCompetingBlockForNode_ManagedKeyHasCompetingBlock (t * testing.T ) {
468+ func TestWaitIfCompetingBlock_ManagedKeyHasCompetingBlock (t * testing.T ) {
469469 container := consensusMocks .InitConsensusCore ()
470470 container .SetRoundHandler (& testscommon.RoundHandlerMock {
471471 TimeDurationCalled : func () time.Duration {
@@ -538,10 +538,10 @@ func TestWaitIfCompetingBlockForNode_ManagedKeyHasCompetingBlock(t *testing.T) {
538538 assert .GreaterOrEqual (t , elapsed , 40 * time .Millisecond , "should have waited for competing block delay" )
539539}
540540
541- func TestWaitIfCompetingBlockForNode_WaitsOnceNotPerKey (t * testing.T ) {
541+ func TestWaitIfCompetingBlock_WaitsOnceNotPerKey (t * testing.T ) {
542542 t .Parallel ()
543543
544- // This test verifies that waitIfCompetingBlockForNode returns after a single wait
544+ // This test verifies that waitIfCompetingBlock returns after a single wait
545545 // even when multiple keys have competing blocks - it should not wait per-key.
546546 container := consensusMocks .InitConsensusCore ()
547547 container .SetRoundHandler (& testscommon.RoundHandlerMock {
0 commit comments