Skip to content

Commit

Permalink
Move import to dto
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Nov 9, 2023
1 parent 7bf436c commit 55f1172
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdk/src/types/block/unlock/empty.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright 2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use crate::types::block::Error;

/// Used to maintain correct index relationship between addresses and signatures when unlocking a
/// [`MultiAddress`](crate::types::block::address::MultiAddress) where not all addresses are unlocked.
#[derive(Clone, Debug, Eq, PartialEq, Hash, packable::Packable)]
Expand All @@ -17,6 +15,7 @@ mod dto {
use serde::{Deserialize, Serialize};

use super::*;
use crate::types::block::Error;

#[derive(Serialize, Deserialize)]
struct EmptyUnlockDto {
Expand Down

0 comments on commit 55f1172

Please sign in to comment.