Skip to content

Commit b13360c

Browse files
authored
fix: change Entrypoint signature type to string (#209)
1 parent 43764fa commit b13360c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

proto/tycho/evm/v1/common.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

substreams/crates/tycho-substreams/src/pb/tycho.evm.v1.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)]

0 commit comments

Comments
 (0)