-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from Chia-Network/beta-1.2
Beta 1.3 release
- Loading branch information
Showing
90 changed files
with
1,981 additions
and
1,051 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Build Windows Installer | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
upload_source_dist: | ||
name: Upload source distribution | ||
runs-on: [windows-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 0 | ||
# we need fetch-depth 0 so setuptools_scm can resolve tags |
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,11 +1,11 @@ | ||
The Linux chiavdf wheels are currently missing an executable required to run a timelord. | ||
If you want to run a timelord on Linux, you must install the wheel from source (which may require | ||
some additional packages). | ||
If you want to run a timelord on Linux, you must install the wheel from source (which may require some additional packages) while in the virtual environment. | ||
|
||
``` | ||
source ./activate | ||
pip install --force --no-binary chiavdf chiavdf==0.12.1 | ||
. ./activate | ||
sh install-timelord.sh | ||
``` | ||
|
||
If the compile fails, it's likely due to a missing dependency. See [INSTALL.md](INSTALL.md) to determine | ||
how to install dependent packages for your system. | ||
If the compile fails, it's likely due to a missing dependency. See [INSTALL.md](INSTALL.md) | ||
to determine how to install dependent packages for your system. |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const wallet_rpc_host_and_port = "ws://127.0.0.1:9256"; | ||
const full_node_rpc_host = "127.0.0.1"; | ||
const full_node_rpc_port = 8555; | ||
|
||
|
||
module.exports = { | ||
wallet_rpc_host_and_port, | ||
full_node_rpc_host, | ||
full_node_rpc_port, | ||
} |
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 |
---|---|---|
|
@@ -94,5 +94,4 @@ async function render() { | |
} | ||
} | ||
|
||
render(); | ||
// console.log("header hash", header_hash); | ||
render(); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.