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
9f73402c
Unverified
Commit
9f73402c
authored
Dec 10, 2023
by
Will Cory
Committed by
GitHub
Dec 10, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8540 from JohnwickBC/develop
chore: fix typos
parents
1d57357f
4e2dd772
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
reorg_test.go
op-e2e/actions/reorg_test.go
+1
-1
metrics.go
op-node/metrics/metrics.go
+1
-1
engine_queue_test.go
op-node/rollup/derive/engine_queue_test.go
+2
-2
base-service-v2.ts
packages/common-ts/src/base-service/base-service-v2.ts
+1
-1
metrics.spec.ts
packages/common-ts/test/metrics.spec.ts
+1
-1
wagmi.config.ts
packages/contracts-ts/wagmi.config.ts
+1
-1
No files found.
op-e2e/actions/reorg_test.go
View file @
9f73402c
...
...
@@ -330,7 +330,7 @@ func ReorgFlipFlop(gt *testing.T, deltaTimeOffset *hexutil.Uint64) {
// 12. Sync the verifier and assert that the L2 safe head L1 origin has caught up with chain B
// 13. Ensure that the parent L2 block of the block that contains Alice's transaction still exists
// after the L2 has re-derived from chain B.
// 14. Ensure that the L2 block that contained Alice's transction before the reorg no longer exists.
// 14. Ensure that the L2 block that contained Alice's trans
a
ction before the reorg no longer exists.
//
// Chain A
// - 61 blocks total
...
...
op-node/metrics/metrics.go
View file @
9f73402c
...
...
@@ -235,7 +235,7 @@ func NewMetrics(procName string) *Metrics {
PeerScores
:
factory
.
NewHistogramVec
(
prometheus
.
HistogramOpts
{
Namespace
:
ns
,
Name
:
"peer_scores"
,
Help
:
"Histogram of curr
r
ently connected peer scores"
,
Help
:
"Histogram of currently connected peer scores"
,
Buckets
:
[]
float64
{
-
100
,
-
40
,
-
20
,
-
10
,
-
5
,
-
2
,
-
1
,
-
0.5
,
-
0.05
,
0
,
0.05
,
0.5
,
1
,
2
,
5
,
10
,
20
,
40
},
},
[]
string
{
"type"
}),
StreamCount
:
factory
.
NewGauge
(
prometheus
.
GaugeOpts
{
...
...
op-node/rollup/derive/engine_queue_test.go
View file @
9f73402c
...
...
@@ -1087,12 +1087,12 @@ func TestResetLoop(t *testing.T) {
eq
.
safeHead
=
refA1
eq
.
finalized
=
refA0
// Q
e
ueue up the safe attributes
// Queue up the safe attributes
require
.
Nil
(
t
,
eq
.
safeAttributes
)
require
.
ErrorIs
(
t
,
eq
.
Step
(
context
.
Background
()),
NotEnoughData
)
require
.
NotNil
(
t
,
eq
.
safeAttributes
)
// Peform the reset
// Pe
r
form the reset
require
.
ErrorIs
(
t
,
eq
.
Reset
(
context
.
Background
(),
eth
.
L1BlockRef
{},
eth
.
SystemConfig
{}),
io
.
EOF
)
// Expect a FCU after the reset
...
...
packages/common-ts/src/base-service/base-service-v2.ts
View file @
9f73402c
...
...
@@ -451,7 +451,7 @@ export abstract class BaseServiceV2<
this
.
logger
.
info
(
'
waiting for main to complete
'
)
// if main is in the middle of running wait for it to complete
await
this
.
mainPromise
this
.
logger
.
info
(
'
main loop stoped.
'
)
this
.
logger
.
info
(
'
main loop stop
p
ed.
'
)
// Shut down the metrics server if it's running.
if
(
this
.
server
)
{
...
...
packages/common-ts/test/metrics.spec.ts
View file @
9f73402c
...
...
@@ -6,7 +6,7 @@ const expect = chai.expect
import
{
Logger
,
LegacyMetrics
,
createMetricsServer
}
from
'
../src
'
describe
(
'
Metrics
'
,
()
=>
{
it
(
'
shoud serve metrics
'
,
async
()
=>
{
it
(
'
shou
l
d serve metrics
'
,
async
()
=>
{
const
metrics
=
new
LegacyMetrics
({
prefix
:
'
test_metrics
'
,
})
...
...
packages/contracts-ts/wagmi.config.ts
View file @
9f73402c
...
...
@@ -261,7 +261,7 @@ const getContractConfigs = (filterDuplicates = false) => {
.
filter
(([
_
,
implementation
])
=>
implementation
)
.
forEach
(([
chain
,
implementation
],
i
)
=>
{
if
(
implementation
)
{
// make the first one can
n
onical. This will be mainnet or op mainnet if they exist
// make the first one canonical. This will be mainnet or op mainnet if they exist
const
name
=
i
===
0
?
contract
.
name
:
`
${
contract
.
name
}
_
${
chains
[
chain
]}
`
const
nextConfig
=
{
...
...
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