From 8f00490dec4524748fd92b656a3abe0d6e20491b Mon Sep 17 00:00:00 2001 From: Neotamandua <107320179+Neotamandua@users.noreply.github.com> Date: Wed, 12 Feb 2025 18:08:14 +0200 Subject: [PATCH] node: fix archive tests - Update CHANGELOG --- node/src/archive/moonlight.rs | 2 +- node/src/archive/sqlite.rs | 2 +- rusk/CHANGELOG.md | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/node/src/archive/moonlight.rs b/node/src/archive/moonlight.rs index bf827e6df..f66bf2e5b 100644 --- a/node/src/archive/moonlight.rs +++ b/node/src/archive/moonlight.rs @@ -755,12 +755,12 @@ mod tests { use std::env; use std::path::PathBuf; + use dusk_core::abi::{ContractId, CONTRACT_ID_BYTES}; use dusk_core::signatures::bls::SecretKey; use dusk_core::transfer::withdraw::WithdrawReceiver; use dusk_core::transfer::{ ConvertEvent, DepositEvent, MoonlightTransactionEvent, WithdrawEvent, }; - use dusk_core::{ContractId, CONTRACT_ID_BYTES}; use node_data::events::contract::{ ContractEvent, ContractTxEvent, WrappedContractId, ORIGIN_HASH_BYTES, }; diff --git a/node/src/archive/sqlite.rs b/node/src/archive/sqlite.rs index 58e3190fa..feb9d88f5 100644 --- a/node/src/archive/sqlite.rs +++ b/node/src/archive/sqlite.rs @@ -501,7 +501,7 @@ mod tests { use std::env; use std::path::PathBuf; - use dusk_core::ContractId; + use dusk_core::abi::ContractId; use node_data::events::contract::{ContractEvent, WrappedContractId}; use rand::distributions::Alphanumeric; use rand::Rng; diff --git a/rusk/CHANGELOG.md b/rusk/CHANGELOG.md index a18b7f1ce..8af85865e 100644 --- a/rusk/CHANGELOG.md +++ b/rusk/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add `abi::public_sender` [#3341] - Add `[vm]` config section [#3341] +- Add CONTRACT_TO_ACCOUNT inflow case on archive moonlight filtering [#3494] ### Changed @@ -325,6 +326,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add build system that generates keys for circuits and caches them. +[#3494]: https://github.com/dusk-network/rusk/issues/3494 [#3481]: https://github.com/dusk-network/rusk/issues/3481 [#3359]: https://github.com/dusk-network/rusk/issues/3359 [#3422]: https://github.com/dusk-network/rusk/issues/3422