From 4f2f660d61e9e85214bf953da179cf6071f0bd34 Mon Sep 17 00:00:00 2001 From: zero Date: Mon, 1 Apr 2024 10:59:04 +0200 Subject: [PATCH] money/integration: add missing import for `darkfi_sdk::blockchain::expected_reward` --- src/contract/money/tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contract/money/tests/integration.rs b/src/contract/money/tests/integration.rs index 290a8a024..3c921a4cb 100644 --- a/src/contract/money/tests/integration.rs +++ b/src/contract/money/tests/integration.rs @@ -18,6 +18,7 @@ use darkfi::Result; use darkfi_contract_test_harness::{init_logger, Holder, TestHarness}; +use darkfi_sdk::blockchain::expected_reward; #[test] fn money_integration() -> Result<()> {