* Extend GPO.active_sons to contain votes and all public keys * Introduce son_wallet_object * son_wallet_object operations * son_wallet_object operations * son_wallet_object operations completed, basic tests added * Create son_wallet_object on new set of SONs, to initiate primary wallet recreation * son_wallet_object API and cli wallet commands * Send RPC command to bitcoin node to recreate multisig wallet * Send RPC command to bitcoin node to recreate multisig wallet * Send RPC command to bitcoin node to recreate multisig wallet * Wallet recreation by scheduled SON only, some cosmetic refactoring * Wallet recreation by scheduled SON only, some cosmetic refactoring * Updating wallet info through operation instead through database.modify() for persistance * SON wallet transfer object and operations, for tracking assets deposit/withdrawal * Update libraries/chain/include/graphene/chain/protocol/son_wallet.hpp Co-Authored-By: gladcow <jahr@yandex.ru> * Update libraries/chain/include/graphene/chain/protocol/son_wallet.hpp Co-Authored-By: gladcow <jahr@yandex.ru> * Fix #include <graphene/chain/son_wallet_transfer_object.hpp> * SON wallet transfer object and operations, for tracking assets deposit/withdrawal * SON wallet transfer object and operations, for tracking assets deposit/withdrawal * Refactor primary wallet recreation * Refactor primary wallet recreation * PW recreation refactoring, prevent duplicated recreations, update wallet address through proposal * PW recreation refactoring, prevent duplicated recreations, update wallet address through proposal * Quickfix for checking payer in evaluator * Quickfix for checking payer in evaluator * Fix failing son_wallet_tests - Check for son_btc_account is temporarely disabled * Remove redundant file * Squashed commit of the following: commita688bb93edAuthor: obucinac <obucinac@users.noreply.github.com> Date: Tue Feb 4 19:31:45 2020 +0100 son_wallet_object operations and multisig wallet recreation by RPC (#263) * Extend GPO.active_sons to contain votes and all public keys * Introduce son_wallet_object * son_wallet_object operations * Create son_wallet_object on new set of SONs, to initiate primary wallet recreation * son_wallet_object API and cli wallet commands * Send RPC command to bitcoin node to recreate multisig wallet * Updating wallet info through operation instead through database.modify() for persistance * Update libraries/chain/include/graphene/chain/protocol/son_wallet.hpp * Update libraries/chain/include/graphene/chain/protocol/son_wallet.hpp * Fix #include <graphene/chain/son_wallet_transfer_object.hpp> * Refactor primary wallet recreation * PW recreation refactoring, prevent duplicated recreations, update wallet address through proposal * Quickfix for checking payer in evaluator * Fix failing son_wallet_tests - Check for son_btc_account is temporarely disabled * Remove redundant file Co-authored-by: gladcow <jahr@yandex.ru> commit6e61d6b055Author: satyakoneru <satyakoneru.iiith@gmail.com> Date: Tue Feb 4 00:14:39 2020 +1100 SON233 - Provide correct downtime metrics to user (#278) * Remove duplicated item in CMakeLists.txt * Issue tokens to the user who deposited Bitcoin, WIP... * Add son_wallet_transfer_process_operation * Issue tokens to the user who deposited Bitcoin, WIP... * Support multiple SON nodes per software instance * Add is_active_son guards for sidechain events processing * Add is_active_son guards, fix sending proposals and aprovals * Managing GRAPHENE_SON_ACCOUNT and issuing assets on Bitcoin deposit * Fix bad param * Fix aprovals on already approved or invalid proposals * Move transfer inside son_wallet_transfer_process_operation * Fix merging issue * Add cmake command line option SUPPORT_MULTIPLE_SONS * Skeleton of sidechain_net_handler_peerplays * Skeleton of Peerplays network listener * Temoprary disable account history tests for tracking accounts * Full Peerplays listener, use GRAPHENE_SON_ACCOUNT instead son_btc_account * Renaming son_wallet_transfer* to son_wallet_deposit*, introducing son_wallet_withdrawal* * Extend sidechain_address_object to contain withdrawal addresses - Withdrawal address is the address where system will send sidechain currencies * Rename son_wallet_withdrawal* to son_wallet_withdraw* * Some refactoring * Withdrawal refactoring * Withdrawal refactoring Co-authored-by: gladcow <jahr@yandex.ru>
120 lines
5.4 KiB
C++
120 lines
5.4 KiB
C++
#include <graphene/chain/son_wallet_deposit_evaluator.hpp>
|
|
|
|
#include <graphene/chain/database.hpp>
|
|
#include <graphene/chain/is_authorized_asset.hpp>
|
|
#include <graphene/chain/son_wallet_deposit_object.hpp>
|
|
|
|
namespace graphene { namespace chain {
|
|
|
|
void_result create_son_wallet_deposit_evaluator::do_evaluate(const son_wallet_deposit_create_operation& op)
|
|
{ try{
|
|
FC_ASSERT(db().head_block_time() >= HARDFORK_SON_TIME, "Not allowed until SON HARDFORK");
|
|
FC_ASSERT( op.payer == GRAPHENE_SON_ACCOUNT, "SON paying account must be set as payer." );
|
|
|
|
//const auto& idx = db().get_index_type<son_wallet_deposit_index>().indices().get<by_sidechain_uid>();
|
|
//FC_ASSERT(idx.find(op.sidechain_uid) == idx.end(), "Already registered " + op.sidechain_uid);
|
|
return void_result();
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
|
|
|
object_id_type create_son_wallet_deposit_evaluator::do_apply(const son_wallet_deposit_create_operation& op)
|
|
{ try {
|
|
const auto& idx = db().get_index_type<son_wallet_deposit_index>().indices().get<by_sidechain_uid>();
|
|
auto itr = idx.find(op.sidechain_uid);
|
|
if (itr == idx.end()) {
|
|
const auto& new_son_wallet_deposit_object = db().create<son_wallet_deposit_object>( [&]( son_wallet_deposit_object& swto ){
|
|
swto.timestamp = op.timestamp;
|
|
swto.sidechain = op.sidechain;
|
|
swto.confirmations = 1;
|
|
swto.sidechain_uid = op.sidechain_uid;
|
|
swto.sidechain_transaction_id = op.sidechain_transaction_id;
|
|
swto.sidechain_from = op.sidechain_from;
|
|
swto.sidechain_to = op.sidechain_to;
|
|
swto.sidechain_amount = op.sidechain_amount;
|
|
swto.peerplays_from = op.peerplays_from;
|
|
swto.peerplays_to = op.peerplays_to;
|
|
swto.peerplays_asset = op.peerplays_asset;
|
|
swto.processed = false;
|
|
});
|
|
return new_son_wallet_deposit_object.id;
|
|
} else {
|
|
db().modify(*itr, [&op](son_wallet_deposit_object &swto) {
|
|
swto.confirmations = swto.confirmations + 1;
|
|
});
|
|
return (*itr).id;
|
|
}
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
|
|
|
void_result process_son_wallet_deposit_evaluator::do_evaluate(const son_wallet_deposit_process_operation& op)
|
|
{ try{
|
|
FC_ASSERT(db().head_block_time() >= HARDFORK_SON_TIME, "Not allowed until SON HARDFORK");
|
|
FC_ASSERT( op.payer == GRAPHENE_SON_ACCOUNT, "SON paying account must be set as payer." );
|
|
|
|
const auto& idx = db().get_index_type<son_wallet_deposit_index>().indices().get<by_id>();
|
|
const auto& itr = idx.find(op.son_wallet_deposit_id);
|
|
FC_ASSERT(itr != idx.end(), "Son wallet transfer not found");
|
|
//FC_ASSERT(itr->processed == false, "Son wallet transfer is already processed");
|
|
|
|
const database& d = db();
|
|
|
|
const account_object& from_account = itr->peerplays_to(d); // reversed, for deposit
|
|
const account_object& to_account = itr->peerplays_from(d); // reversed, for deposit
|
|
const asset_object& asset_type = itr->peerplays_asset.asset_id(d);
|
|
|
|
try {
|
|
|
|
GRAPHENE_ASSERT(
|
|
is_authorized_asset( d, from_account, asset_type ),
|
|
transfer_from_account_not_whitelisted,
|
|
"'from' account ${from} is not whitelisted for asset ${asset}",
|
|
("from",from_account.id)
|
|
("asset",itr->peerplays_asset.asset_id)
|
|
);
|
|
GRAPHENE_ASSERT(
|
|
is_authorized_asset( d, to_account, asset_type ),
|
|
transfer_to_account_not_whitelisted,
|
|
"'to' account ${to} is not whitelisted for asset ${asset}",
|
|
("to",to_account.id)
|
|
("asset",itr->peerplays_asset.asset_id)
|
|
);
|
|
|
|
if( asset_type.is_transfer_restricted() )
|
|
{
|
|
GRAPHENE_ASSERT(
|
|
from_account.id == asset_type.issuer || to_account.id == asset_type.issuer,
|
|
transfer_restricted_transfer_asset,
|
|
"Asset {asset} has transfer_restricted flag enabled",
|
|
("asset", itr->peerplays_asset.asset_id)
|
|
);
|
|
}
|
|
|
|
bool insufficient_balance = d.get_balance( from_account, asset_type ).amount >= itr->peerplays_asset.amount;
|
|
FC_ASSERT( insufficient_balance,
|
|
"Insufficient Balance: ${balance}, unable to transfer '${total_transfer}' from account '${a}' to '${t}'",
|
|
("a",from_account.name)("t",to_account.name)("total_transfer",d.to_pretty_string(itr->peerplays_asset))("balance",d.to_pretty_string(d.get_balance(from_account, asset_type))) );
|
|
|
|
return void_result();
|
|
} FC_RETHROW_EXCEPTIONS( error, "Unable to transfer ${a} from ${f} to ${t}", ("a",d.to_pretty_string(itr->peerplays_asset))("f",from_account.name)("t",to_account.name) );
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
|
|
|
object_id_type process_son_wallet_deposit_evaluator::do_apply(const son_wallet_deposit_process_operation& op)
|
|
{ try {
|
|
const auto& idx = db().get_index_type<son_wallet_deposit_index>().indices().get<by_id>();
|
|
auto itr = idx.find(op.son_wallet_deposit_id);
|
|
if(itr != idx.end())
|
|
{
|
|
if (itr->processed == false) {
|
|
db().modify(*itr, [&op](son_wallet_deposit_object &swto) {
|
|
swto.processed = true;
|
|
});
|
|
|
|
const account_id_type from_account = itr->peerplays_to; // reversed, for deposit
|
|
const account_id_type to_account = itr->peerplays_from; // reversed, for deposit
|
|
|
|
db().adjust_balance( from_account, -itr->peerplays_asset );
|
|
db().adjust_balance( to_account, itr->peerplays_asset );
|
|
}
|
|
}
|
|
return op.son_wallet_deposit_id;
|
|
} FC_CAPTURE_AND_RETHROW( (op) ) }
|
|
|
|
} } // namespace graphene::chain
|