Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk committed Dec 20, 2024
1 parent 9cb9158 commit f51beab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/manual-randomness/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

// You should have received a copy of the GNU General Public License
// along with Tanssi. If not, see <http://www.gnu.org/licenses/>.
use sp_core::H256;
use jsonrpsee::{core::RpcResult, proc_macros::rpc};
use sp_core::H256;

#[rpc(server)]
#[jsonrpsee::core::async_trait]
Expand Down
3 changes: 2 additions & 1 deletion node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,8 @@ pub fn start_dev_node(

let (hrmp_xcm_sender, hrmp_xcm_receiver) = flume::bounded::<(ParaId, Vec<u8>)>(100);
// Create channels for mocked parachain candidates.
let (mock_randomness_sender, mock_randomness_receiver) = flume::bounded::<(bool, Option<[u8; 32]>)>(100);
let (mock_randomness_sender, mock_randomness_receiver) =
flume::bounded::<(bool, Option<[u8; 32]>)>(100);

xcm_senders = Some((downward_xcm_sender, hrmp_xcm_sender));
randomness_sender = Some(mock_randomness_sender);
Expand Down

0 comments on commit f51beab

Please sign in to comment.