fix: change Entrypoint signature type to string (#209)

This commit is contained in:
Louise Poole
2025-05-14 15:42:44 +02:00
committed by GitHub
parent 43764fa5cb
commit b13360c92b
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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)]