File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
substreams/crates/tycho-substreams/src/pb Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ message EntryPoint {
158158 // The target contract to analyse this entrypoint on.
159159 bytes target = 2 ;
160160 // The signature of the function to analyse.
161- bytes signature = 3 ;
161+ string signature = 3 ;
162162}
163163
164164// A contract and associated storage changes
Original file line number Diff line number Diff line change @@ -187,8 +187,8 @@ pub struct EntryPoint {
187187 #[ prost( bytes="vec" , tag="2" ) ]
188188 pub target : :: prost:: alloc:: vec:: Vec < u8 > ,
189189 /// The signature of the function to analyse.
190- #[ prost( bytes= "vec" , tag="3" ) ]
191- pub signature : :: prost:: alloc:: vec :: Vec < u8 > ,
190+ #[ prost( string , tag="3" ) ]
191+ pub signature : :: prost:: alloc:: string :: String ,
192192}
193193/// A contract and associated storage changes
194194#[ allow( clippy:: derive_partial_eq_without_eq) ]
You can’t perform that action at this time.
0 commit comments