forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ms.transaction fixes (Chia-Network#227)
* dbus alternative for linux * key migration * reset mnemonics * Fix tests, and start working on key selection * Implement UI for changing keys * Removing keys and mnemonic button * Start making farmer and harvester RPCs * routing, daemon, react * Fix rpc shutdown * Harvester and farmer websocket, and basic UI * Plot display and deletion * use proper config: * don't crash on nondefined * local test false * launch daemon on start * farmer clean * get blocks * header table * Start with farmer callback, fix bug in getting latest blocks * State changes from full node, harvester, farmer, and full node ui improvements * split balances in react * pending change balance * plotter * dev config * gitignore fail.. * maintain connection / retry * Fix tests * Remove electron-ui, and style fixes * Better farmer and full node control * Remove electron ui references * Uncomment out starting the dameon * Add to changelog * Remove timelord tab, and change full node style * Clean up new wallet login * Refactor RPCs * Fix flake8 import issues in full_node_rpc_server.py * add balance split to coloured coin wallet * spendable balance fix * Import private key from UI fix * Various fixes to transaction sending, and UI tweaks * Fix merge issues Co-authored-by: Yostra <[email protected]> Co-authored-by: Lipa Long <[email protected]> Co-authored-by: Gene Hoffman <[email protected]>
- Loading branch information
Showing
20 changed files
with
480 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
export const daemonMessage = () => ({ | ||
type: "OUTGOING_MESSAGE", | ||
destination: "daemon" | ||
message: { | ||
destination: "daemon" | ||
} | ||
}); | ||
|
||
export const registerService = () => { | ||
var action = daemonMessage(); | ||
action.command = "register_service"; | ||
action.data = { service: "wallet_ui" }; | ||
action.message.command = "register_service"; | ||
action.message.data = { service: "wallet_ui" }; | ||
return action; | ||
}; | ||
|
||
export const startService = service_name => { | ||
var action = daemonMessage(); | ||
action.command = "start_service"; | ||
action.data = { service: service_name }; | ||
action.message.command = "start_service"; | ||
action.message.data = { service: service_name }; | ||
return action; | ||
}; | ||
|
||
export const stopService = service_name => { | ||
var action = daemonMessage(); | ||
action.command = "stop_service"; | ||
action.data = { service: service_name }; | ||
action.message.command = "stop_service"; | ||
action.message.data = { service: service_name }; | ||
return action; | ||
}; | ||
|
||
export const isServiceRunning = service_name => { | ||
var action = daemonMessage(); | ||
action.command = "is_running"; | ||
action.data = { service: service_name }; | ||
action.message.command = "is_running"; | ||
action.message.data = { service: service_name }; | ||
return action; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.