Skip to content

Commit

Permalink
Fix opencl script
Browse files Browse the repository at this point in the history
  • Loading branch information
Pethical committed Jul 8, 2018
1 parent 2b85656 commit 36890f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MicroCoinMiner.pas
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ TMicroCoinMinerApp = class(TCustomApplication)
end;

Const
CT_MINER_VERSION = {$IFDEF PRODUCTION}'1.0'{$ELSE}{$IFDEF TESTNET}'1.0 TESTNET'{$ELSE}ERROR{$ENDIF}{$ENDIF};
CT_MINER_VERSION = {$IFDEF PRODUCTION}'1.1.1'{$ELSE}{$IFDEF TESTNET}'1.1.1 TESTNET'{$ELSE}ERROR{$ENDIF}{$ENDIF};
CT_Line_DeviceStatus = 3;
CT_Line_ConnectionStatus = 4;
CT_Line_MinerValues = 7;
Expand Down
2 changes: 1 addition & 1 deletion src/microcoinsha.cl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ __constant static const uint k[64] = {
};


__kernel void pascalcoin(__global uint *midstateIn, __global int *nonceOut) {
__kernel void microcoin(__global uint *midstateIn, __global int *nonceOut) {
/*
midstateIn is an array[0..28]
midstateIn[0..15] = data for last chunk
Expand Down

0 comments on commit 36890f9

Please sign in to comment.