diff --git a/copy-bitcoin.sh b/copy-bitcoin.sh new file mode 100644 index 00000000000..ce132c0aa7a --- /dev/null +++ b/copy-bitcoin.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# Usage: copy-bitcoin +set -e +src=$(pwd)/../edge-currency-bitcoin/packages/edge-currency-bitcoin/lib/react-native +dest=$(pwd)/node_modules/edge-currency-bitcoin/lib/react-native + +mkdir -p $dest + +cp -r $src/ $dest/ + +src=$(pwd)/../edge-currency-bitcoin/packages/nidavellir/lib +dest=$(pwd)/node_modules/nidavellir/lib + +mkdir -p $dest + +cp -r $src/ $dest/ + +src=$(pwd)/../edge-currency-bitcoin/packages/nidavellir-networks-unsafe/lib +dest=$(pwd)/node_modules/@nidavellir/networks-unsafe/lib + +mkdir -p $dest + +cp -r $src/ $dest/ + +sh postinstall.sh \ No newline at end of file diff --git a/src/styles/SettingsComponentsStyle.js b/src/styles/SettingsComponentsStyle.js index e65c14723a8..0cb62daa5ae 100644 --- a/src/styles/SettingsComponentsStyle.js +++ b/src/styles/SettingsComponentsStyle.js @@ -95,7 +95,6 @@ export const styles = { padding: 3 }, customNodesInput: { - height: 128, color: THEME.COLORS.GRAY_1, fontSize: 15, fontFamily: THEME.FONTS.DEFAULT,