Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Hi #2334

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Hi #2334

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
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
12 changes: 6 additions & 6 deletions ethminer/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <condition_variable>

#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8
#endif

#include <libethcore/Farm.h>
Expand All @@ -34,7 +34,7 @@
#if ETH_ETHASHCPU
#include <libethash-cpu/CPUMiner.h>
#endif
#include <libpoolprotocols/PoolManager.h>
#include <libpoolprotocols/PoolManager.h>0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8

#if API_CORE
#include <libapicore/ApiServer.h>
Expand Down Expand Up @@ -96,7 +96,7 @@ class MinerCLI
// and should not start/stop or even join threads (which heavily time consuming)
}

virtual ~MinerCLI()
virtual ~MinerCLI()0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8
{
m_cliDisplayTimer.cancel();
g_io_service.stop();
Expand Down Expand Up @@ -1132,14 +1132,14 @@ class MinerCLI
<< endl
<< " Example 1: -P getwork://127.0.0.1:8545" << endl
<< " Example 2: "
"-P stratums://0x012345678901234567890234567890123[email protected]:5555"
"-P stratums://0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8[email protected]:5555"
<< endl
<< " Example 3: "
"-P stratum://0x012345678901234567890234567890123[email protected]:9999/"
"-P stratum://0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8[email protected]:9999/"
"john.doe%40gmail.com"
<< endl
<< " Example 4: "
"-P stratum://0x012345678901234567890234567890123@nanopool.org:9999/miner1/"
"-P stratum://0x589465560A09d11F0eA0114C6C32B02DC8AfD5a8@nanopool.org:9999/miner1/"
"john.doe%40gmail.com"
<< endl
<< endl
Expand Down