@@ -82,6 +82,7 @@ func (h *testEthHandler) Handle(peer *eth.Peer, packet eth.Packet) error {
82
82
// fork IDs in the protocol handshake.
83
83
func TestForkIDSplit65 (t * testing.T ) { testForkIDSplit (t , eth .ETH65 ) }
84
84
func TestForkIDSplit66 (t * testing.T ) { testForkIDSplit (t , eth .ETH66 ) }
85
+ func TestForkIDSplit68 (t * testing.T ) { testForkIDSplit (t , eth .ETH68 ) }
85
86
86
87
func testForkIDSplit (t * testing.T , protocol uint ) {
87
88
t .Parallel ()
@@ -240,6 +241,7 @@ func testForkIDSplit(t *testing.T, protocol uint) {
240
241
// Tests that received transactions are added to the local pool.
241
242
func TestRecvTransactions65 (t * testing.T ) { testRecvTransactions (t , eth .ETH65 ) }
242
243
func TestRecvTransactions66 (t * testing.T ) { testRecvTransactions (t , eth .ETH66 ) }
244
+ func TestRecvTransactions68 (t * testing.T ) { testRecvTransactions (t , eth .ETH68 ) }
243
245
244
246
func testRecvTransactions (t * testing.T , protocol uint ) {
245
247
t .Parallel ()
@@ -297,6 +299,7 @@ func testRecvTransactions(t *testing.T, protocol uint) {
297
299
298
300
// This test checks that pending transactions are sent.
299
301
func TestSendTransactions66 (t * testing.T ) { testSendTransactions (t , eth .ETH66 ) }
302
+ func TestSendTransactions68 (t * testing.T ) { testSendTransactions (t , eth .ETH68 ) }
300
303
301
304
func testSendTransactions (t * testing.T , protocol uint ) {
302
305
t .Parallel ()
@@ -383,6 +386,7 @@ func testSendTransactions(t *testing.T, protocol uint) {
383
386
// broadcasts or via announcements/retrievals.
384
387
func TestTransactionPropagation65 (t * testing.T ) { testTransactionPropagation (t , eth .ETH65 ) }
385
388
func TestTransactionPropagation66 (t * testing.T ) { testTransactionPropagation (t , eth .ETH66 ) }
389
+ func TestTransactionPropagation68 (t * testing.T ) { testTransactionPropagation (t , eth .ETH68 ) }
386
390
387
391
func testTransactionPropagation (t * testing.T , protocol uint ) {
388
392
t .Parallel ()
@@ -690,6 +694,7 @@ func testBroadcastBlock(t *testing.T, peers, bcasts int) {
690
694
// with the hashes in the header) gets discarded and not broadcast forward.
691
695
func TestBroadcastMalformedBlock65 (t * testing.T ) { testBroadcastMalformedBlock (t , eth .ETH65 ) }
692
696
func TestBroadcastMalformedBlock66 (t * testing.T ) { testBroadcastMalformedBlock (t , eth .ETH66 ) }
697
+ func TestBroadcastMalformedBlock68 (t * testing.T ) { testBroadcastMalformedBlock (t , eth .ETH68 ) }
693
698
694
699
func testBroadcastMalformedBlock (t * testing.T , protocol uint ) {
695
700
t .Parallel ()
0 commit comments