diff --git a/contracts/identity/FriendsRecovery.sol b/contracts/identity/FriendsRecovery.sol index e960669..b548a93 100644 --- a/contracts/identity/FriendsRecovery.sol +++ b/contracts/identity/FriendsRecovery.sol @@ -47,6 +47,13 @@ contract FriendsRecovery { addFriends(_friendHashes); } + function withdraw() + external + identityOnly + { + identity.transfer(this.balance); + } + function cancelSetup() external identityOnly