diff --git a/plugin/src/events.rs b/plugin/src/events.rs index 868e3aa1..f5380183 100644 --- a/plugin/src/events.rs +++ b/plugin/src/events.rs @@ -40,7 +40,7 @@ impl TryFrom<&mut ReplicaAccountInfo<'_>> for AccountUpdateEvent { }); } - // If the account belongs to the thread v2 program, parse it. + // If the account belongs to the thread v1 program, parse it. if owner_pubkey.eq(&sablier_thread_program::ID) && account_info.data.len() > 8 { let d = &account_info.data[..8]; if d.eq(&Thread::discriminator()) { @@ -48,7 +48,7 @@ impl TryFrom<&mut ReplicaAccountInfo<'_>> for AccountUpdateEvent { thread: VersionedThread::V1( Thread::try_deserialize(&mut account_info.data).map_err(|_| { GeyserPluginError::AccountsUpdateError { - msg: "Failed to parse Sablier thread v2 account".into(), + msg: "Failed to parse Sablier thread v1 account".into(), } })?, ), diff --git a/scripts/cargo-publish.sh b/scripts/cargo-publish.sh index c12fdc0b..2729705c 100755 --- a/scripts/cargo-publish.sh +++ b/scripts/cargo-publish.sh @@ -3,10 +3,12 @@ # Publish shared libs cargo publish -p sablier-cron sleep 25 -cargo publish -p sablier-macros -sleep 25 cargo publish -p sablier-utils sleep 25 +cargo publish -p sablier-relayer-api +sleep 25 +cargo publish -p sablier-plugin-utils +sleep 25 # Publish programs cargo publish -p sablier-network-program @@ -22,6 +24,4 @@ sleep 25 # Publish downstream bins and libs # These are most likely to fail due to Anchor dependency issues. -cargo publish -p sablier-client -sleep 25 cargo publish -p sablier-cli diff --git a/scripts/ci/rust-version.sh b/scripts/ci/rust-version.sh index ec733bdf..a5799d75 100755 --- a/scripts/ci/rust-version.sh +++ b/scripts/ci/rust-version.sh @@ -23,7 +23,7 @@ if [[ -n $RUST_STABLE_VERSION ]]; then stable_version="$RUST_STABLE_VERSION" else - stable_version=1.60.0 + stable_version=1.76.0 fi if [[ -n $RUST_NIGHTLY_VERSION ]]; then