mirror of
https://github.com/fullstack-cash/wallet.fullstack.cash.git
synced 2026-09-21 16:52:05 -07:00
Merge pull request #54 from Permissionless-Software-Foundation/dh-sweep
fix(sweep): Fixed Sweep in wallet.fullstack.cash
This commit is contained in:
Generated
+7
-7
@@ -13,7 +13,7 @@
|
|||||||
"@capacitor/cli": "^2.4.6",
|
"@capacitor/cli": "^2.4.6",
|
||||||
"@capacitor/core": "^2.4.6",
|
"@capacitor/core": "^2.4.6",
|
||||||
"gatsby": "^4.4.0",
|
"gatsby": "^4.4.0",
|
||||||
"gatsby-plugin-bch-sweep": "^1.5.4",
|
"gatsby-plugin-bch-sweep": "^1.5.5",
|
||||||
"gatsby-theme-bch-wallet": "^1.1.2"
|
"gatsby-theme-bch-wallet": "^1.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@@ -17902,9 +17902,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/gatsby-plugin-bch-sweep": {
|
"node_modules/gatsby-plugin-bch-sweep": {
|
||||||
"version": "1.5.4",
|
"version": "1.5.5",
|
||||||
"resolved": "https://registry.npmjs.org/gatsby-plugin-bch-sweep/-/gatsby-plugin-bch-sweep-1.5.4.tgz",
|
"resolved": "http://94.130.170.209:4873/gatsby-plugin-bch-sweep/-/gatsby-plugin-bch-sweep-1.5.5.tgz",
|
||||||
"integrity": "sha512-W26/j+kirFrcgIowA1J4hTyIDkTLXeVbrryQZ4Z8GMojw5YkIxZ+61l2i96IJT0zmvKr5qSECMptpCt1Do9Tng==",
|
"integrity": "sha512-PpWp7tdcl7raW7aVu0pWeDjpId3pFJgfK1ZWgn65Hw5YdbPWkm62WGCcaO0uT/Of9umqc5quDuNH6ogR1Dmx8A==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"adminlte-2-react": "^0.1.27"
|
"adminlte-2-react": "^0.1.27"
|
||||||
@@ -58314,9 +58314,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gatsby-plugin-bch-sweep": {
|
"gatsby-plugin-bch-sweep": {
|
||||||
"version": "1.5.4",
|
"version": "1.5.5",
|
||||||
"resolved": "https://registry.npmjs.org/gatsby-plugin-bch-sweep/-/gatsby-plugin-bch-sweep-1.5.4.tgz",
|
"resolved": "http://94.130.170.209:4873/gatsby-plugin-bch-sweep/-/gatsby-plugin-bch-sweep-1.5.5.tgz",
|
||||||
"integrity": "sha512-W26/j+kirFrcgIowA1J4hTyIDkTLXeVbrryQZ4Z8GMojw5YkIxZ+61l2i96IJT0zmvKr5qSECMptpCt1Do9Tng==",
|
"integrity": "sha512-PpWp7tdcl7raW7aVu0pWeDjpId3pFJgfK1ZWgn65Hw5YdbPWkm62WGCcaO0uT/Of9umqc5quDuNH6ogR1Dmx8A==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"adminlte-2-react": "^0.1.27"
|
"adminlte-2-react": "^0.1.27"
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -25,7 +25,7 @@
|
|||||||
"@capacitor/cli": "^2.4.6",
|
"@capacitor/cli": "^2.4.6",
|
||||||
"@capacitor/core": "^2.4.6",
|
"@capacitor/core": "^2.4.6",
|
||||||
"gatsby": "^4.4.0",
|
"gatsby": "^4.4.0",
|
||||||
"gatsby-plugin-bch-sweep": "^1.5.4",
|
"gatsby-plugin-bch-sweep": "^1.5.5",
|
||||||
"gatsby-theme-bch-wallet": "^1.1.2"
|
"gatsby-theme-bch-wallet": "^1.1.2"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import Configure from 'gatsby-theme-bch-wallet/src/components/admin-lte/configur
|
|||||||
import SendReceive from 'gatsby-theme-bch-wallet/src/components/admin-lte/send-receive'
|
import SendReceive from 'gatsby-theme-bch-wallet/src/components/admin-lte/send-receive'
|
||||||
|
|
||||||
import About from '../../about'
|
import About from '../../about'
|
||||||
/* import Sweep from 'gatsby-plugin-bch-sweep' */
|
import Sweep from 'gatsby-plugin-bch-sweep/src/components/sweep/index'
|
||||||
|
|
||||||
const { Item } = Sidebar
|
const { Item } = Sidebar
|
||||||
|
|
||||||
@@ -36,10 +36,12 @@ const MenuComponents = props => {
|
|||||||
text='Send/Receive BCH'
|
text='Send/Receive BCH'
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}, /* { key: 'Sweep',
|
},
|
||||||
|
{
|
||||||
|
key: 'Sweep',
|
||||||
component: <Sweep key='Sweep' {...props} />,
|
component: <Sweep key='Sweep' {...props} />,
|
||||||
menuItem: <Item icon='fas-cog' key='Sweep' text='Sweep' />
|
menuItem: <Item icon='fas-cog' key='Sweep' text='Sweep' />
|
||||||
}, */
|
},
|
||||||
{
|
{
|
||||||
key: 'Wallet',
|
key: 'Wallet',
|
||||||
component: <Wallet key='Wallet' interface='rest-api' {...props} />,
|
component: <Wallet key='Wallet' interface='rest-api' {...props} />,
|
||||||
|
|||||||
Reference in New Issue
Block a user