Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/neuron-wallet/src/channel/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { ipcMain, WebContents, Notification } from 'electron'
import { Channel } from '../utils/const'

const methods: { [index: string]: Function } = {
getASWBalance: () => {},
notification: (args: string[]) => {
return new Promise(resolve => {
const notification = new Notification({
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-wallet/src/channel/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class WalletChannel extends Listeners {

public sendWallet = (
wallet: any = {
name: 'asw',
name: '',
address: '',
publicKey: '',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-wallet/src/commands/commands.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// App commands, input from Menu or other places.
// In many cases a command comes from the app shell and is sent to renderer process with channel.
enum Command {
SendWallet = 'send-wallet', // default to asw for now
SendWallet = 'send-wallet',
SyncWallets = 'sync-wallets',
SyncNetworks = 'sync-network',
SendTransactionHistory = 'send-transaction-history',
Expand Down