Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
5c7b0db4
Commit
5c7b0db4
authored
May 18, 2023
by
Felipe Andrade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(proxyd): clean up cache initialization
parent
846be4eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
19 deletions
+1
-19
config.go
proxyd/config.go
+1
-3
proxyd.go
proxyd/proxyd.go
+0
-16
No files found.
proxyd/config.go
View file @
5c7b0db4
...
...
@@ -26,9 +26,7 @@ type ServerConfig struct {
}
type
CacheConfig
struct
{
Enabled
bool
`toml:"enabled"`
BlockSyncRPCURL
string
`toml:"block_sync_rpc_url"`
NumBlockConfirmations
int
`toml:"num_block_confirmations"`
Enabled
bool
`toml:"enabled"`
}
type
RedisConfig
struct
{
...
...
proxyd/proxyd.go
View file @
5c7b0db4
...
...
@@ -9,7 +9,6 @@ import (
"time"
"github.com/ethereum/go-ethereum/common/math"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/log"
"github.com/go-redis/redis/v8"
"github.com/prometheus/client_golang/prometheus/promhttp"
...
...
@@ -206,27 +205,12 @@ func Start(config *Config) (*Server, func(), error) {
rpcCache
RPCCache
)
if
config
.
Cache
.
Enabled
{
if
config
.
Cache
.
BlockSyncRPCURL
==
""
{
return
nil
,
nil
,
fmt
.
Errorf
(
"block sync node required for caching"
)
}
blockSyncRPCURL
,
err
:=
ReadFromEnvOrConfig
(
config
.
Cache
.
BlockSyncRPCURL
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
if
redisClient
==
nil
{
log
.
Warn
(
"redis is not configured, using in-memory cache"
)
cache
=
newMemoryCache
()
}
else
{
cache
=
newRedisCache
(
redisClient
,
config
.
Redis
.
Namespace
)
}
// Ideally, the BlocKSyncRPCURL should be the sequencer or a HA replica that's not far behind
ethClient
,
err
:=
ethclient
.
Dial
(
blockSyncRPCURL
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
defer
ethClient
.
Close
()
rpcCache
=
newRPCCache
(
newCacheWithCompression
(
cache
))
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment