force_vested_transfer: TxDescriptor<
    {
        schedule: { locked: bigint; per_block: bigint; starting_block: number };
        source: MultiAddress;
        target: MultiAddress;
    },
>

Force a vested transfer.

The dispatch origin for this call must be Root.

  • source: The account whose funds should be transferred.
  • target: The account that should be transferred the vested funds.
  • schedule: The vesting schedule attached to the transfer.

Emits VestingCreated.

NOTE: This will unlock all schedules through the current block.

  • O(1).