Skip to content

Commit 74d9590

Browse files
committed
PLMC AH transfer test
1 parent 775a8f8 commit 74d9590

File tree

8 files changed

+11
-48
lines changed

8 files changed

+11
-48
lines changed

integration-tests/chopsticks/.papi/descriptors/.gitignore

-3
This file was deleted.

integration-tests/chopsticks/.papi/descriptors/package.json

-24
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.

integration-tests/chopsticks/.papi/polkadot-api.json

-21
This file was deleted.

integration-tests/chopsticks/src/tests/polimec.test.ts

+10
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,14 @@ describe('Polimec -> Hub Transfer Tests', () => {
4848
}),
4949
{ timeout: 25000 },
5050
);
51+
52+
// test(
53+
// 'Send PLMC to Hub',
54+
// () =>
55+
// transferTest.testTransfer({
56+
// account: Accounts.BOB,
57+
// assets: [[Asset.PLMC, TRANSFER_AMOUNTS.NATIVE, AssetSourceRelation.Self]],
58+
// }),
59+
// { timeout: 25000 },
60+
// );
5161
});

pallets/funding/src/functions/5_settlement.rs

+1
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ impl<T: Config> Pallet<T> {
320320
T::FundingCurrency::transfer(asset.id(), &project_pot, participant, amount, Preservation::Expendable)?;
321321
Ok(())
322322
}
323+
323324
/// Helper function to release the PLMC bond to the participant
324325
fn release_participation_bond_for(participant: &AccountIdOf<T>, amount: Balance) -> DispatchResult {
325326
if amount.is_zero() {

0 commit comments

Comments
 (0)