Merge branch 'master' of https://github.com/status-im/nim-ethash
This commit is contained in:
commit
0e1a1169e4
2
LICENSE
2
LICENSE
|
@ -198,4 +198,4 @@
|
|||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
limitations under the License.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
packageName = "ethash"
|
||||
version = "0.0.1"
|
||||
author = "Status Research & Development GmbH"
|
||||
description = "A reimplementation in pure Nim of ethash, the ethereum proof-of-work algorithm"
|
||||
license = "Apachev2"
|
||||
description = "A Nim implementation of Ethash, the Ethereum proof-of-work hashing function"
|
||||
license = "Apache License 2.0"
|
||||
srcDir = "src"
|
||||
|
||||
### Dependencies
|
||||
|
@ -25,4 +25,5 @@ task test, "Run Proof-of-Work tests (without mining)":
|
|||
task test_mining, "Run Proof-of-Work and mining tests (test in release mode)":
|
||||
switch("define", "release")
|
||||
switch("define", "ethash_mining")
|
||||
test "all_tests", "cpp"
|
||||
test "all_tests", "cpp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue