@@ -77,7 +77,7 @@ func (cl *SupervisorClient) CheckMessage(ctx context.Context, identifier types.I
7777 return result , nil
7878}
7979
80- func (cl * SupervisorClient ) UnsafeView (ctx context.Context , chainID types .ChainID , unsafe types.ReferenceView ) (types.ReferenceView , error ) {
80+ func (cl * SupervisorClient ) UnsafeView (ctx context.Context , chainID eth .ChainID , unsafe types.ReferenceView ) (types.ReferenceView , error ) {
8181 var result types.ReferenceView
8282 err := cl .client .CallContext (
8383 ctx ,
@@ -91,7 +91,7 @@ func (cl *SupervisorClient) UnsafeView(ctx context.Context, chainID types.ChainI
9191 return result , nil
9292}
9393
94- func (cl * SupervisorClient ) SafeView (ctx context.Context , chainID types .ChainID , safe types.ReferenceView ) (types.ReferenceView , error ) {
94+ func (cl * SupervisorClient ) SafeView (ctx context.Context , chainID eth .ChainID , safe types.ReferenceView ) (types.ReferenceView , error ) {
9595 var result types.ReferenceView
9696 err := cl .client .CallContext (
9797 ctx ,
@@ -105,7 +105,7 @@ func (cl *SupervisorClient) SafeView(ctx context.Context, chainID types.ChainID,
105105 return result , nil
106106}
107107
108- func (cl * SupervisorClient ) Finalized (ctx context.Context , chainID types .ChainID ) (eth.BlockID , error ) {
108+ func (cl * SupervisorClient ) Finalized (ctx context.Context , chainID eth .ChainID ) (eth.BlockID , error ) {
109109 var result eth.BlockID
110110 err := cl .client .CallContext (
111111 ctx ,
@@ -124,7 +124,7 @@ func (cl *SupervisorClient) FinalizedL1(ctx context.Context) (eth.BlockRef, erro
124124 return result , err
125125}
126126
127- func (cl * SupervisorClient ) CrossDerivedFrom (ctx context.Context , chainID types .ChainID , derived eth.BlockID ) (eth.BlockRef , error ) {
127+ func (cl * SupervisorClient ) CrossDerivedFrom (ctx context.Context , chainID eth .ChainID , derived eth.BlockID ) (eth.BlockRef , error ) {
128128 var result eth.BlockRef
129129 err := cl .client .CallContext (
130130 ctx ,
@@ -135,7 +135,7 @@ func (cl *SupervisorClient) CrossDerivedFrom(ctx context.Context, chainID types.
135135 return result , err
136136}
137137
138- func (cl * SupervisorClient ) UpdateLocalUnsafe (ctx context.Context , chainID types .ChainID , head eth.BlockRef ) error {
138+ func (cl * SupervisorClient ) UpdateLocalUnsafe (ctx context.Context , chainID eth .ChainID , head eth.BlockRef ) error {
139139 return cl .client .CallContext (
140140 ctx ,
141141 nil ,
@@ -144,7 +144,7 @@ func (cl *SupervisorClient) UpdateLocalUnsafe(ctx context.Context, chainID types
144144 head )
145145}
146146
147- func (cl * SupervisorClient ) UpdateLocalSafe (ctx context.Context , chainID types .ChainID , derivedFrom eth.L1BlockRef , lastDerived eth.BlockRef ) error {
147+ func (cl * SupervisorClient ) UpdateLocalSafe (ctx context.Context , chainID eth .ChainID , derivedFrom eth.L1BlockRef , lastDerived eth.BlockRef ) error {
148148 return cl .client .CallContext (
149149 ctx ,
150150 nil ,
@@ -154,8 +154,8 @@ func (cl *SupervisorClient) UpdateLocalSafe(ctx context.Context, chainID types.C
154154 lastDerived )
155155}
156156
157- func (cl * SupervisorClient ) SuperRootAtTimestamp (ctx context.Context , timestamp hexutil.Uint64 ) (types .SuperRootResponse , error ) {
158- var result types .SuperRootResponse
157+ func (cl * SupervisorClient ) SuperRootAtTimestamp (ctx context.Context , timestamp hexutil.Uint64 ) (eth .SuperRootResponse , error ) {
158+ var result eth .SuperRootResponse
159159 err := cl .client .CallContext (
160160 ctx ,
161161 & result ,
0 commit comments