Skip to content

Commit

Permalink
Merge pull request #142 from VerusCoin/dev
Browse files Browse the repository at this point in the history
v1.0.6
  • Loading branch information
Asherda authored Nov 10, 2023
2 parents 3e7170a + a7d939a commit 331a6db
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.android.build.OutputFile

def versionMajor = 1
def versionMinor = 0
def versionRevision = 5
def versionRevision = 6
def versionBuild = 0

def keystorePropertiesFile = rootProject.file("keystore.properties");
Expand Down
2 changes: 1 addition & 1 deletion env/main.android.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.5",
"APP_VERSION": "1.0.6",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
2 changes: 1 addition & 1 deletion env/main.ios.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.5",
"APP_VERSION": "1.0.6",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
2 changes: 1 addition & 1 deletion ios/assets/env/main.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "1.0.5",
"APP_VERSION": "1.0.6",
"ELECTRUM_PROTOCOL_CHANGE": 1.4,

"KEY_DERIVATION_VERSION": 1,
Expand Down
4 changes: 2 additions & 2 deletions ios/verusMobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@
"\"${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob\"",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.verusmobile;
PRODUCT_NAME = verusmobile;
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -792,7 +792,7 @@
"\"${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob\"",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.verusmobile;
PRODUCT_NAME = verusmobile;
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "verusmobile",
"version": "1.0.5",
"version": "1.0.6",
"private": true,
"scripts": {
"postinstall": "./node_modules/.bin/rn-nodeify --hack --install --yarn && npx jetify",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/api/channels/erc20/requests/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const send = async (coinObj, activeUser, address, amount, passthrough) =>
const response = await signableContract.transfer(
address,
amountBn,
{ gasLimit: gasLimit.toNumber(), gasPrice: ethers.utils.parseUnits(gasPrice.toString(), 'gwei') }
{ gasLimit: gasLimit.toNumber(), gasPrice: gasPrice }
);

return {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/api/channels/eth/requests/preflight.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const txPreflight = async (coinObj, activeUser, address, amount, params)

if (adjustedValue.lt(ethers.BigNumber.from(0)))
throw new Error(
`Insufficient funds, cannot cover fee costs of at least ${maxFee} ETH.`
`Insufficient funds, cannot cover fee costs of at least ${ethers.utils.formatUnits(maxFee)} ETH.`
);
else
return await txPreflight(
Expand Down

0 comments on commit 331a6db

Please sign in to comment.