Skip to content

Commit

Permalink
chore: fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Nov 5, 2024
1 parent 26ce72d commit ec4d81a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ gadget-sdk = { path = "./sdk", default-features = false, version = "0.3.0" }
incredible-squaring-blueprint = { path = "./blueprints/incredible-squaring", default-features = false, version = "0.1.1" }
incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squaring-eigenlayer", default-features = false, version = "0.1.1" }
incredible-squaring-blueprint-symbiotic = { path = "./blueprints/incredible-squaring-symbiotic", default-features = false, version = "0.1.1" }
examples = { path = "./blueprints/examples", default-features = false, version = "0.1.1" }
blueprint-examples = { path = "./blueprints/examples", default-features = false, version = "0.1.1" }
gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.3.0" }
gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.5" }
gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion blueprints/examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "examples"
name = "blueprint-examples"
version = "0.1.1"
description = "A variety of example blueprint jobs, event listeners, contexts, and more."
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion blueprints/examples/src/examples/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub mod periodic_web_poller;
pub mod raw_tangle_events;
pub mod sequential_event_listener;
pub mod sequential_event_listener;
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ macro_rules! sequential_event_listener {
if self.events_correlate(&sequence, &event) {
sequence.$event = Some((event.clone(), log.clone()));
sequence.last_update = log.block_number.unwrap_or_default();

if sequence.is_complete() {
if let Some(seq) = self.pending_sequences.remove(&sequence.sequence_id) {
let completed = (
Expand Down

0 comments on commit ec4d81a

Please sign in to comment.