Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Whitespace fix
Browse files Browse the repository at this point in the history
Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com>
  • Loading branch information
athei and gui1117 authored Feb 12, 2021
1 parent fab55d0 commit 63e0dc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/contracts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ decl_module! {
ctx.call(dest, value, gas_meter, data)
});
let code_len = result.as_ref().map(|r| r.1).unwrap_or(T::MaxCodeSize::get());
gas_meter.into_dispatch_result(result,T::WeightInfo::call(code_len / 1024))
gas_meter.into_dispatch_result(result, T::WeightInfo::call(code_len / 1024))
}

/// Instantiates a new contract from the supplied `code` optionally transferring
Expand Down

0 comments on commit 63e0dc2

Please sign in to comment.