We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f3b10 commit b433fc0Copy full SHA for b433fc0
modules/sdk-core/src/bitgo/wallet/wallet.ts
@@ -1,6 +1,7 @@
1
/**
2
* @prettier
3
*/
4
+import * as t from 'io-ts';
5
import assert from 'assert';
6
import { BigNumber } from 'bignumber.js';
7
import * as _ from 'lodash';
@@ -3643,7 +3644,7 @@ export class Wallet implements IWallet {
3643
3644
return postWithCodec(
3645
this.bitgo,
3646
this.baseCoin.url('/wallet/' + this.id() + '/tx/send'),
- TxSendBody,
3647
+ t.intersection([TxSendBody, t.type({ locktime: t.number })]),
3648
whitelistedParams
3649
).result();
3650
}
0 commit comments