Skip to content

Commit

Permalink
update version and adjust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anyxem committed Jul 13, 2024
1 parent 541bf8d commit 9c185e7
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 139 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ android {
applicationId "com.mojitowallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 41
versionName "0.3.1"
versionCode 42
versionName "0.3.2"
multiDexEnabled true
missingDimensionStrategy 'react-native-camera', 'general'
testBuildType System.getProperty('testBuildType', 'debug') // This will later be used to control the test apk build type
Expand Down
2 changes: 0 additions & 2 deletions class/wallets/mintlayer-wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -589,8 +589,6 @@ export class MintLayerWallet extends AbstractHDWallet {
if (this._utxo?.length !== 0) {
const usedUtxo = this._unconfirmedTxs.flatMap(({ usedUtxo }) => usedUtxo).filter((utxo) => utxo);

console.log('usedUtxo:', JSON.stringify(usedUtxo, null, 2));

const unusedUtxo = this._utxo.map((utxo) => {
return utxo.filter(({ outpoint: { source_id, index } }) => {
return !usedUtxo.some(({ outpoint }) => outpoint.source_id === source_id && outpoint.index === index);
Expand Down
1 change: 0 additions & 1 deletion components/TransactionsNavigationHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export default class TransactionsNavigationHeader extends Component {
};

navigateToStake = () => {
console.log('this.props', this.props);
this.props.navigation('StakingRoot', {
screen: 'Staking',
params: {
Expand Down
185 changes: 83 additions & 102 deletions ios/BlueWallet.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

24 changes: 0 additions & 24 deletions ios/BlueWallet.xcworkspace/xcshareddata/swiftpm/Package.resolved

This file was deleted.

2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -833,4 +833,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 72f21c3c103ca277ac03661c28b92bdd00e4b503

COCOAPODS: 1.11.3
COCOAPODS: 1.15.2
7 changes: 0 additions & 7 deletions screen/send/details/hooks/useRecalcFee.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export const useRecalcFee = ({ wallet, networkTransactionFees, feeRate, utxo, ad
async function recalcMlFees() {
if (!wallet) return;
const fees = networkTransactionFees;
console.log('fees', fees);
const changeAddress = getChangeAddressFast();
const requestedSatPerByte = Number(feeRate);
const lutxo = utxo || wallet.getUtxo();
Expand All @@ -98,13 +97,9 @@ export const useRecalcFee = ({ wallet, networkTransactionFees, feeRate, utxo, ad

const newFeePrecalc = { ...feePrecalc };

console.log('newFeePrecalc', newFeePrecalc);

for (const opt of options) {
const targets = [];

console.log('addresses', addresses);

for (const transaction of addresses) {
if (transaction.amount === BitcoinUnit.MAX) {
// output with MAX
Expand All @@ -131,8 +126,6 @@ export const useRecalcFee = ({ wallet, networkTransactionFees, feeRate, utxo, ad
}
}

console.log('targets', targets);

try {
// only one target available now
const { value: amountToUse, address } = targets[0];
Expand Down

0 comments on commit 9c185e7

Please sign in to comment.