synapsecns/sanguine

View on GitHub
ethergo/chain/mocks/chain.go

Summary

Maintainability
F
3 days
Test Coverage

File chain.go has 779 lines of code (exceeds 500 allowed). Consider refactoring.
Open

// Code generated by mockery v2.14.0. DO NOT EDIT.

package mocks

import (
Severity: Major
Found in ethergo/chain/mocks/chain.go - About 1 day to fix

    Chain has 49 methods (exceeds 20 allowed). Consider refactoring.
    Open

    type Chain struct {
        mock.Mock
    }
    Severity: Minor
    Found in ethergo/chain/mocks/chain.go - About 6 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      func (_m *Chain) HeaderByTime(ctx context.Context, startBlock *big.Int, searchTime time.Time) (*types.Header, error) {
          ret := _m.Called(ctx, startBlock, searchTime)
      
          var r0 *types.Header
          if rf, ok := ret.Get(0).(func(context.Context, *big.Int, time.Time) *types.Header); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 1 other location - About 4 hrs to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 623..643

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 314.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 10 locations. Consider refactoring.
      Open

      func (_m *Chain) GetBigChainID() *big.Int {
          ret := _m.Called()
      
          var r0 *big.Int
          if rf, ok := ret.Get(0).(func() *big.Int); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 9 other locations - About 1 hr to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 265..278
      ethergo/backends/mocks/simulated_test_backend.go on lines 478..491
      ethergo/backends/mocks/simulated_test_backend.go on lines 1125..1138
      ethergo/chain/gas/backend/mocks/oracle_backend_chain.go on lines 70..83
      ethergo/chain/mocks/chain.go on lines 216..229
      ethergo/contracts/mocks/contract_type.go on lines 17..30
      ethergo/contracts/mocks/deployed_contract.go on lines 37..50
      ethergo/contracts/mocks/deployed_contract.go on lines 69..82
      ethergo/contracts/mocks/deployed_contract.go on lines 101..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 155.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 10 locations. Consider refactoring.
      Open

      func (_m *Chain) ChainConfig() *params.ChainConfig {
          ret := _m.Called()
      
          var r0 *params.ChainConfig
          if rf, ok := ret.Get(0).(func() *params.ChainConfig); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 9 other locations - About 1 hr to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 265..278
      ethergo/backends/mocks/simulated_test_backend.go on lines 478..491
      ethergo/backends/mocks/simulated_test_backend.go on lines 1125..1138
      ethergo/chain/gas/backend/mocks/oracle_backend_chain.go on lines 70..83
      ethergo/chain/mocks/chain.go on lines 419..432
      ethergo/contracts/mocks/contract_type.go on lines 17..30
      ethergo/contracts/mocks/deployed_contract.go on lines 37..50
      ethergo/contracts/mocks/deployed_contract.go on lines 69..82
      ethergo/contracts/mocks/deployed_contract.go on lines 101..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 155.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 19 locations. Consider refactoring.
      Open

      func (_m *Chain) Estimator() gas.PriceEstimator {
          ret := _m.Called()
      
          var r0 gas.PriceEstimator
          if rf, ok := ret.Get(0).(func() gas.PriceEstimator); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 18 other locations - About 1 hr to fix
      agents/contracts/bondingmanager/mocks/i_bonding_manager.go on lines 72..85
      agents/contracts/gasoracle/mocks/i_gas_oracle.go on lines 49..62
      agents/contracts/inbox/mocks/i_inbox.go on lines 49..62
      agents/contracts/lightinbox/mocks/i_light_inbox.go on lines 49..62
      agents/contracts/lightmanager/mocks/i_light_manager.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 642..655
      ethergo/backends/mocks/simulated_test_backend.go on lines 395..408
      ethergo/backends/mocks/simulated_test_backend.go on lines 462..475
      ethergo/backends/mocks/simulated_test_backend.go on lines 524..537
      ethergo/backends/mocks/simulated_test_backend.go on lines 966..979
      ethergo/chain/mocks/chain.go on lines 403..416
      ethergo/chain/mocks/chain.go on lines 449..462
      ethergo/contracts/mocks/deployed_contract.go on lines 21..34
      ethergo/contracts/mocks/deployed_contract.go on lines 85..98
      ethergo/listener/mocks/contract_listener.go on lines 21..34
      ethergo/signer/signer/mocks/signer.go on lines 26..39
      ethergo/signer/signer/mocks/signer.go on lines 65..78

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 147.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 19 locations. Consider refactoring.
      Open

      func (_m *Chain) GasSetter() gas.Setter {
          ret := _m.Called()
      
          var r0 gas.Setter
          if rf, ok := ret.Get(0).(func() gas.Setter); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 18 other locations - About 1 hr to fix
      agents/contracts/bondingmanager/mocks/i_bonding_manager.go on lines 72..85
      agents/contracts/gasoracle/mocks/i_gas_oracle.go on lines 49..62
      agents/contracts/inbox/mocks/i_inbox.go on lines 49..62
      agents/contracts/lightinbox/mocks/i_light_inbox.go on lines 49..62
      agents/contracts/lightmanager/mocks/i_light_manager.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 642..655
      ethergo/backends/mocks/simulated_test_backend.go on lines 395..408
      ethergo/backends/mocks/simulated_test_backend.go on lines 462..475
      ethergo/backends/mocks/simulated_test_backend.go on lines 524..537
      ethergo/backends/mocks/simulated_test_backend.go on lines 966..979
      ethergo/chain/mocks/chain.go on lines 341..354
      ethergo/chain/mocks/chain.go on lines 449..462
      ethergo/contracts/mocks/deployed_contract.go on lines 21..34
      ethergo/contracts/mocks/deployed_contract.go on lines 85..98
      ethergo/listener/mocks/contract_listener.go on lines 21..34
      ethergo/signer/signer/mocks/signer.go on lines 26..39
      ethergo/signer/signer/mocks/signer.go on lines 65..78

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 147.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 19 locations. Consider refactoring.
      Open

      func (_m *Chain) GetHeightWatcher() chainwatcher.BlockHeightWatcher {
          ret := _m.Called()
      
          var r0 chainwatcher.BlockHeightWatcher
          if rf, ok := ret.Get(0).(func() chainwatcher.BlockHeightWatcher); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 18 other locations - About 1 hr to fix
      agents/contracts/bondingmanager/mocks/i_bonding_manager.go on lines 72..85
      agents/contracts/gasoracle/mocks/i_gas_oracle.go on lines 49..62
      agents/contracts/inbox/mocks/i_inbox.go on lines 49..62
      agents/contracts/lightinbox/mocks/i_light_inbox.go on lines 49..62
      agents/contracts/lightmanager/mocks/i_light_manager.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 49..62
      agents/contracts/origin/mocks/i_origin.go on lines 642..655
      ethergo/backends/mocks/simulated_test_backend.go on lines 395..408
      ethergo/backends/mocks/simulated_test_backend.go on lines 462..475
      ethergo/backends/mocks/simulated_test_backend.go on lines 524..537
      ethergo/backends/mocks/simulated_test_backend.go on lines 966..979
      ethergo/chain/mocks/chain.go on lines 341..354
      ethergo/chain/mocks/chain.go on lines 403..416
      ethergo/contracts/mocks/deployed_contract.go on lines 21..34
      ethergo/contracts/mocks/deployed_contract.go on lines 85..98
      ethergo/listener/mocks/contract_listener.go on lines 21..34
      ethergo/signer/signer/mocks/signer.go on lines 26..39
      ethergo/signer/signer/mocks/signer.go on lines 65..78

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 147.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) GetChainID() uint {
          ret := _m.Called()
      
          var r0 uint
          if rf, ok := ret.Get(0).(func() uint); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) RPCAddress() string {
          ret := _m.Called()
      
          var r0 string
          if rf, ok := ret.Get(0).(func() string); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) RequestCount() int64 {
          ret := _m.Called()
      
          var r0 int64
          if rf, ok := ret.Get(0).(func() int64); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) ChainName() string {
          ret := _m.Called()
      
          var r0 string
          if rf, ok := ret.Get(0).(func() string); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) AttemptReconnect() bool {
          ret := _m.Called()
      
          var r0 bool
          if rf, ok := ret.Get(0).(func() bool); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) ClientID() string {
          ret := _m.Called()
      
          var r0 string
          if rf, ok := ret.Get(0).(func() string); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 306..317
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 27 locations. Consider refactoring.
      Open

      func (_m *Chain) ConcurrencyCount() int32 {
          ret := _m.Called()
      
          var r0 int32
          if rf, ok := ret.Get(0).(func() int32); ok {
      Severity: Major
      Found in ethergo/chain/mocks/chain.go and 26 other locations - About 45 mins to fix
      ethergo/backends/mocks/simulated_test_backend.go on lines 51..62
      ethergo/backends/mocks/simulated_test_backend.go on lines 65..76
      ethergo/backends/mocks/simulated_test_backend.go on lines 304..315
      ethergo/backends/mocks/simulated_test_backend.go on lines 323..334
      ethergo/backends/mocks/simulated_test_backend.go on lines 360..371
      ethergo/backends/mocks/simulated_test_backend.go on lines 494..505
      ethergo/backends/mocks/simulated_test_backend.go on lines 884..895
      ethergo/backends/mocks/simulated_test_backend.go on lines 898..909
      ethergo/chain/client/mocks/metered_evm_client.go on lines 29..40
      ethergo/chain/client/mocks/metered_evm_client.go on lines 231..242
      ethergo/chain/client/mocks/metered_evm_client.go on lines 268..279
      ethergo/chain/client/mocks/metered_evm_client.go on lines 573..584
      ethergo/chain/mocks/chain.go on lines 37..48
      ethergo/chain/mocks/chain.go on lines 255..266
      ethergo/chain/mocks/chain.go on lines 269..280
      ethergo/chain/mocks/chain.go on lines 435..446
      ethergo/chain/mocks/chain.go on lines 712..723
      ethergo/chain/mocks/chain.go on lines 726..737
      ethergo/contracts/mocks/contract_type.go on lines 33..44
      ethergo/contracts/mocks/contract_type.go on lines 47..58
      ethergo/contracts/mocks/contract_type.go on lines 61..72
      ethergo/contracts/mocks/deployed_contract.go on lines 117..128
      ethergo/listener/mocks/contract_listener.go on lines 37..48
      services/omnirpc/chainmanager/mocks/chain.go on lines 13..24
      services/omnirpc/chainmanager/mocks/chain.go on lines 27..38
      services/omnirpc/http/mocks/response.go on lines 29..40

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      There are no issues that match your filters.

      Category
      Status