Remove redundant Box around signers

This commit is contained in:
LLFourn
2020-11-03 16:03:44 +11:00
parent 5784a95e48
commit 3b3659fc0c
2 changed files with 10 additions and 14 deletions

View File

@@ -205,7 +205,7 @@ where
script_type: ScriptType,
id: SignerId,
ordering: SignerOrdering,
signer: Arc<Box<dyn Signer>>,
signer: Arc<dyn Signer>,
) {
let signers = match script_type {
ScriptType::External => Arc::make_mut(&mut self.signers),