File tree Expand file tree Collapse file tree 3 files changed +607
-1
lines changed
Expand file tree Collapse file tree 3 files changed +607
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import { AdvancedWalletManagerClient as AdvancedWalletManagerClient } from '../.
1616import { handleEddsaSigning } from '../../../api/master/handlers/eddsa' ;
1717import { readKey } from 'openpgp' ;
1818
19- // TODO: Re-enable once using EDDSA Custom signing fns
2019describe ( 'Eddsa Signing Handler' , ( ) => {
2120 let bitgo : BitGoBase ;
2221 let wallet : Wallet ;
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ async function handleGenerateOnPremOnChainWallet(
4848
4949 // Create wallet parameters with type assertion to allow 'onprem' subtype
5050 const walletParams = {
51+ ...req . decoded ,
5152 label : label ,
5253 m : 2 ,
5354 n : 3 ,
@@ -157,6 +158,7 @@ async function handleGenerateOnPremMpcWallet(
157158 const { label, enterprise } = req . decoded ;
158159
159160 const walletParams : SupplementGenerateWalletOptions = {
161+ ...req . decoded ,
160162 label : label ,
161163 m : 2 ,
162164 n : 3 ,
You can’t perform that action at this time.
0 commit comments