Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/proto/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub trait ProtoEvent: Message + Name + Serialize + DeserializeOwned + Sized {
}

let json = serde_json::to_value(attributes)
.expect("HashMap of String, serde_json::Value should be serializeable.");
.expect("HashMap of String, serde_json::Value should be serializable.");

return Ok(
serde_json::from_value(json).context("could not deserialise ProtoJSON into event")?
Expand Down
2 changes: 1 addition & 1 deletion crates/proto/src/gen/penumbra.core.component.ibc.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pub struct Ics20Withdrawal {
#[prost(string, tag = "7")]
pub source_channel: ::prost::alloc::string::String,
/// Whether to use a "compat" (bech32, non-m) address for the return address in the withdrawal,
/// for compatability with chains that expect to be able to parse the return address as bech32.
/// for compatibility with chains that expect to be able to parse the return address as bech32.
#[deprecated]
#[prost(bool, tag = "8")]
pub use_compat_address: bool,
Expand Down
2 changes: 1 addition & 1 deletion crates/proto/src/gen/penumbra.core.component.sct.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ pub mod commitment_source {
/// The commitment was created by the LQT mechanism and tracks LQT reward notes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LiquidityTournamentReward {
/// The epoch in which the reward occured.
/// The epoch in which the reward occurred.
#[prost(uint64, tag = "1")]
pub epoch: u64,
/// Transaction hash of the transaction that did the voting.
Expand Down
Loading