manual reserve creation for Android
This commit is contained in:
parent
06d9aab47c
commit
482a56a4e8
@ -211,6 +211,12 @@ class AndroidWalletMessageHandler {
|
|||||||
const wallet = await this.wp.promise;
|
const wallet = await this.wp.promise;
|
||||||
return await wallet.confirmPay(args.proposalId, args.sessionId);
|
return await wallet.confirmPay(args.proposalId, args.sessionId);
|
||||||
}
|
}
|
||||||
|
case "createManualReserve": {
|
||||||
|
const wallet = await this.wp.promise;
|
||||||
|
const res = await wallet.createReserve(args);
|
||||||
|
await wallet.confirmReserve({ reservePub: res.reservePub });
|
||||||
|
return res;
|
||||||
|
}
|
||||||
case "startTunnel": {
|
case "startTunnel": {
|
||||||
// this.httpLib.useNfcTunnel = true;
|
// this.httpLib.useNfcTunnel = true;
|
||||||
throw Error("not implemented");
|
throw Error("not implemented");
|
||||||
|
Loading…
Reference in New Issue
Block a user