Skip to content

Commit

Permalink
Centrifuge App: Fix pool create type (#1579)
Browse files Browse the repository at this point in the history
  • Loading branch information
onnovisser authored Sep 13, 2023
1 parent 35f57b9 commit c110a13
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion centrifuge-app/src/pages/IssuerCreatePool/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ function CreatePoolForm() {
const multisigAddr = adminMultisig && createKeyMulti(adminMultisig.signers, adminMultisig.threshold)
console.log('adminMultisig', multisigAddr)
const poolArgs = args.slice(2) as any
return combineLatest([cent.getApi(), cent.pools.createPool(poolArgs, { batch: true })]).pipe(
return combineLatest([
cent.getApi(),
cent.pools.createPool(poolArgs, { createType: options?.createType, batch: true }),
]).pipe(
switchMap(([api, poolSubmittable]) => {
const adminProxyDelegate = multisigAddr ?? address
const otherMultisigSigners =
Expand Down

0 comments on commit c110a13

Please sign in to comment.