Skip to content

Commit

Permalink
fix: e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
joanestebanr committed Feb 21, 2025
1 parent 9849256 commit 75d0261
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 0 additions & 9 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,6 @@ var (
FieldNamePattern: "L2Config.polygonBridgeAddr",
Reason: bridgeAddrSetOnWrongSection,
},
{
FieldNamePattern: "SequencerPrivateKeyPath",
Reason: "SequencerPrivateKeyPath is deprecated, use AggSender.AggsenderPrivateKey.Path instead," +
" or AggSender.KMSKeyName",
},
{
FieldNamePattern: "SequencerPrivateKeyPassword",
Reason: "SequencerPrivateKeyPassword is deprecated, use AggSender.AggsenderPrivateKey.Password instead",
},
}
)

Expand Down
4 changes: 3 additions & 1 deletion config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ ContractVersions = "elderberry"
IsValidiumMode = false
L2Coinbase = "0xfa3b44587990f97ba8b6ba7e230a5f0e95d14b3d"
SequencerPrivateKeyPath = "/app/sequencer.keystore"
SequencerPrivateKeyPassword = "test"
WitnessURL = "http://localhost:8123"
# Who send Proof to L1? AggLayer addr, or aggregator addr?
Expand Down Expand Up @@ -208,7 +210,7 @@ StoragePath = "{{PathRWData}}/aggsender.sqlite"
AggLayerURL = "{{AggLayerURL}}"
KMSKeyName = ""
KMSConnectionTimeout = "30s"
AggsenderPrivateKey = {Path = "/app/sequencer.keystore", Password = "test"}
AggsenderPrivateKey = {Path = "{{SequencerPrivateKeyPath}}", Password = "{{SequencerPrivateKeyPassword}}"}
URLRPCL2="{{L2URL}}"
BlockFinality = "LatestBlock"
EpochNotificationPercentage = 50
Expand Down

0 comments on commit 75d0261

Please sign in to comment.