File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
modules/sdk-core/src/bitgo/proofs Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ export class WalletProofs {
1717 async getLiabilityProofs ( ) : Promise < UserVerificationElements > {
1818 const reqId = new RequestTracer ( ) ;
1919 this . wallet . bitgo . setRequestTracer ( reqId ) ;
20-
2120 return ( await this . wallet . bitgo
22- . get ( this . wallet . bitgo . url ( '/proofs-service/wallet /' + this . wallet . id ( ) + '/liability-proofs' ) )
21+ . get ( this . wallet . bitgo . url ( '/proofs-service/wallets /' + this . wallet . id ( ) + '/liability-proofs' ) )
2322 . send ( )
2423 . result ( ) ) as UserVerificationElements ;
2524 }
@@ -34,7 +33,7 @@ export class WalletProofs {
3433 this . wallet . bitgo . setRequestTracer ( reqId ) ;
3534
3635 return ( await this . wallet . bitgo
37- . get ( this . wallet . bitgo . url ( '/proofs-service/wallet /' + this . wallet . id ( ) + '/account-snapshot' ) )
36+ . get ( this . wallet . bitgo . url ( '/proofs-service/wallets /' + this . wallet . id ( ) + '/account-snapshot' ) )
3837 . send ( )
3938 . result ( ) ) as AccountSnapshot ;
4039 }
You can’t perform that action at this time.
0 commit comments