difftreelog
fix merge artefacts
in: master
2 files changed
runtime/src/lib.rsdiffbeforeafterboth--- a/runtime/src/lib.rs
+++ b/runtime/src/lib.rs
@@ -1019,7 +1019,7 @@
($collection:ident.$method:ident($($name:ident),*)) => {{
use pallet_unique::dispatch::Dispatched;
- let collection = Dispatched::dispatch(<pallet_common::CollectionHandle<Runtime>>::new($collection).unwrap_or_default());
+ let collection = Dispatched::dispatch(<pallet_common::CollectionHandle<Runtime>>::new($collection).unwrap());
let dispatch = collection.as_dyn();
dispatch.$method($($name),*)
tests/src/eth/payable.test.tsdiffbeforeafterboth54 expect(await contract.methods.getUnaccounted().call()).to.be.equal('10000');54 expect(await contract.methods.getUnaccounted().call()).to.be.equal('10000');55 });55 });565657 itWeb3.only('Balance can be retrieved from evm contract', async({api, web3}) => {57 itWeb3('Balance can be retrieved from evm contract', async({api, web3}) => {58 const FEE_BALANCE = 10n ** 18n;58 const FEE_BALANCE = 10n ** 18n;59 const CONTRACT_BALANCE = 10n ** 14n;59 const CONTRACT_BALANCE = 10n ** 14n;6060