b777fdcddc
* I removed wallet.server in a previous commit * the client couldn't determine which wallet was stored on the server since all server specific fields were set in server.js * walletType and walletField are now set in index.js * walletType is now used to determine if a wallet is stored on the server * also included some formatting changes
6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
import * as lnd from 'wallets/lnd/server'
|
|
import * as cln from 'wallets/cln/server'
|
|
import * as lnAddr from 'wallets/lightning-address/server'
|
|
|
|
export default [lnd, cln, lnAddr]
|