fix: change Entrypoint signature type to string (#209)
This commit is contained in:
@@ -158,7 +158,7 @@ message EntryPoint {
|
||||
// The target contract to analyse this entrypoint on.
|
||||
bytes target = 2;
|
||||
// The signature of the function to analyse.
|
||||
bytes signature = 3;
|
||||
string signature = 3;
|
||||
}
|
||||
|
||||
// A contract and associated storage changes
|
||||
|
||||
@@ -187,8 +187,8 @@ pub struct EntryPoint {
|
||||
#[prost(bytes="vec", tag="2")]
|
||||
pub target: ::prost::alloc::vec::Vec<u8>,
|
||||
/// The signature of the function to analyse.
|
||||
#[prost(bytes="vec", tag="3")]
|
||||
pub signature: ::prost::alloc::vec::Vec<u8>,
|
||||
#[prost(string, tag="3")]
|
||||
pub signature: ::prost::alloc::string::String,
|
||||
}
|
||||
/// A contract and associated storage changes
|
||||
#[allow(clippy::derive_partial_eq_without_eq)]
|
||||
|
||||
Reference in New Issue
Block a user