Skip to content

Commit

Permalink
adding a new architecture where tokens are absorbed into this contrac…
Browse files Browse the repository at this point in the history
…t and then immediately send out
  • Loading branch information
ethereumdegen committed Jan 18, 2020
1 parent b834f64 commit 74c00b3
Show file tree
Hide file tree
Showing 12 changed files with 146 additions and 2,888 deletions.
298 changes: 0 additions & 298 deletions contracts/DoubleKingsReward.sol

This file was deleted.

4 changes: 2 additions & 2 deletions contracts/ECRecovery.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity ^0.4.18;
pragma solidity ^0.5.16;

library ECRecovery {

Expand All @@ -7,7 +7,7 @@ library ECRecovery {
* @param hash bytes32 message, the hash is the signed message. What is recovered is the signer address.
* @param sig bytes signature, the signature is generated using web3.eth.sign()
*/
function recover(bytes32 hash, bytes sig) public pure returns (address) {
function recover(bytes32 hash, bytes memory sig) public pure returns (address) {
bytes32 r;
bytes32 s;
uint8 v;
Expand Down
Loading

0 comments on commit 74c00b3

Please sign in to comment.