style: format code with gofmt

This commit is contained in:
Krypto Kajun
2025-11-08 10:37:52 -06:00
parent 8cba462024
commit ae4abc5b5c
32 changed files with 9207 additions and 5843 deletions

View File

@@ -80,11 +80,11 @@ type ArbitrageDatabase interface {
// ArbitrageService is a sophisticated arbitrage service with comprehensive MEV detection
// Now integrated with the complete MEV bot architecture
type ArbitrageService struct {
client *ethclient.Client
logger *logger.Logger
config *config.ArbitrageConfig // Legacy arbitrage config
fullConfig *config.Config // Full config for L2 optimizations
keyManager *security.KeyManager
client *ethclient.Client
logger *logger.Logger
config *config.ArbitrageConfig // Legacy arbitrage config
fullConfig *config.Config // Full config for L2 optimizations
keyManager *security.KeyManager
// Core components (legacy)
multiHopScanner *MultiHopScanner