Skip to content

Commit

Permalink
BOLT 12: backport patch
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Jul 12, 2024
1 parent 00d98d2 commit bf6f537
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/zeus.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@
CODE_SIGN_ENTITLEMENTS = zeus/zeus.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 3;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = 9TU7M3555F;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -1867,7 +1867,7 @@
CODE_SIGN_ENTITLEMENTS = zeus/zeusRelease.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 3;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = 9TU7M3555F;
ENABLE_BITCODE = NO;
Expand Down
2 changes: 2 additions & 0 deletions views/Send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,14 @@ export default class Send extends React.Component<SendProps, SendState> {
const amount = navigation.getParam('amount', null);
const transactionType = navigation.getParam('transactionType', null);
const contactName = navigation.getParam('contactName', null);
const bolt12 = navigation.getParam('bolt12', null);

if (transactionType === 'Lightning') {
this.props.InvoicesStore.getPayReq(destination);
}

this.setState({
bolt12,
transactionType,
destination,
isValid: true,
Expand Down

0 comments on commit bf6f537

Please sign in to comment.