Switch function name to destroyAndSend

pull/212/head
Maxim Averin 8 years ago
parent 4de772f5ed
commit cf7bc06856
  1. 3
      contracts/lifecycle/Destructible.sol
  2. 2
      docs/source/killable.rst
  3. 2
      test/Destructible.js

@ -7,14 +7,13 @@ import "../ownership/Ownable.sol";
/* /*
* Destructible * Destructible
* Base contract that can be destroyed by owner. All funds in contract will be sent to the owner. * Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
* In second function all funds will be sent to the recepient.
*/ */
contract Destructible is Ownable { contract Destructible is Ownable {
function destroy() onlyOwner { function destroy() onlyOwner {
selfdestruct(owner); selfdestruct(owner);
} }
function destroyAndSendRecepient(address _recipient) onlyOwner { function destroyAndSend(address _recipient) onlyOwner {
selfdestruct(_recipient); selfdestruct(_recipient);
} }
} }

@ -10,7 +10,7 @@ destroy( ) onlyOwner
Destroys the contract and sends funds back to the owner. Destroys the contract and sends funds back to the owner.
destroyAndSendRecepient(address _recipient) onlyOwner destroyAndSend(address _recipient) onlyOwner
""""""""""""""""""" """""""""""""""""""
Destroys the contract and sends funds back to the _recepient. Destroys the contract and sends funds back to the _recepient.

@ -18,7 +18,7 @@ contract('Destructible', function(accounts) {
let destructible = await Destructible.new({from: accounts[0], value: web3.toWei('10','ether')}); let destructible = await Destructible.new({from: accounts[0], value: web3.toWei('10','ether')});
let owner = await destructible.owner(); let owner = await destructible.owner();
let initBalance = web3.eth.getBalance(accounts[1]); let initBalance = web3.eth.getBalance(accounts[1]);
await destructible.destroyAndSendRecepient(accounts[1], {from: owner} ); await destructible.destroyAndSend(accounts[1], {from: owner} );
let newBalance = web3.eth.getBalance(accounts[1]); let newBalance = web3.eth.getBalance(accounts[1]);
assert.isTrue(newBalance.greaterThan(initBalance)); assert.isTrue(newBalance.greaterThan(initBalance));
}); });

Loading…
Cancel
Save