BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
transfer.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cryptonomex, Inc., and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
25 
26 #include <fc/io/raw.hpp>
27 
28 namespace graphene { namespace protocol {
29 
31 {
32  share_type core_fee_required = schedule.fee;
33  if( memo )
34  core_fee_required += calculate_data_fee( fc::raw::pack_size(memo), schedule.price_per_kbyte );
35  return core_fee_required;
36 }
37 
38 
40 {
41  FC_ASSERT( fee.amount >= 0 );
42  FC_ASSERT( from != to );
43  FC_ASSERT( amount.amount > 0 );
44 }
45 
46 
47 
49 {
50  share_type core_fee_required = schedule.fee;
51  if( memo )
52  core_fee_required += calculate_data_fee( fc::raw::pack_size(memo), schedule.price_per_kbyte );
53  return core_fee_required;
54 }
55 
56 
58 {
59  FC_ASSERT( fee.amount >= 0 );
60  FC_ASSERT( from != to );
61  FC_ASSERT( amount.amount > 0 );
62  FC_ASSERT( issuer != from );
63 }
64 
65 } } // graphene::protocol
66 
graphene::protocol::transfer_operation::amount
asset amount
The amount of asset to transfer from from to to.
Definition: transfer.hpp:58
graphene::protocol::override_transfer_operation::fee
asset fee
Definition: transfer.hpp:84
fc::schedule
auto schedule(Functor &&f, const fc::time_point &t, const char *desc FC_TASK_NAME_DEFAULT_ARG, priority prio=priority()) -> fc::future< decltype(f())>
Definition: thread.hpp:231
graphene::protocol::transfer_operation::fee
asset fee
Definition: transfer.hpp:52
GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION
#define GRAPHENE_IMPLEMENT_EXTERNAL_SERIALIZATION(type)
Definition: types.hpp:86
graphene::protocol::base_operation::calculate_data_fee
static uint64_t calculate_data_fee(uint64_t bytes, uint64_t price_per_kbyte)
Definition: operations.cpp:33
transfer.hpp
graphene::protocol::override_transfer_operation::issuer
account_id_type issuer
Definition: transfer.hpp:85
graphene::protocol::override_transfer_operation::from
account_id_type from
Account to transfer asset from.
Definition: transfer.hpp:87
graphene::protocol::transfer_operation
Transfers an amount of one asset from one account to another.
Definition: transfer.hpp:45
graphene::protocol::override_transfer_operation::to
account_id_type to
Account to transfer asset to.
Definition: transfer.hpp:89
fc::raw::pack_size
size_t pack_size(const T &v)
Definition: raw.hpp:757
graphene::protocol::transfer_operation::validate
void validate() const
Definition: transfer.cpp:39
graphene::protocol::transfer_operation::calculate_fee
share_type calculate_fee(const fee_params_t &k) const
Definition: transfer.cpp:30
graphene::protocol::override_transfer_operation::amount
asset amount
The amount of asset to transfer from from to to.
Definition: transfer.hpp:91
graphene::protocol::override_transfer_operation::fee_params_t
Definition: transfer.hpp:79
graphene::protocol::transfer_operation::to
account_id_type to
Account to transfer asset to.
Definition: transfer.hpp:56
graphene::protocol::transfer_operation::from
account_id_type from
Account to transfer asset from.
Definition: transfer.hpp:54
FC_ASSERT
#define FC_ASSERT(TEST,...)
Checks a condition and throws an assert_exception if the test is FALSE.
Definition: exception.hpp:345
graphene::protocol::asset::amount
share_type amount
Definition: asset.hpp:36
graphene::protocol::override_transfer_operation::memo
optional< memo_data > memo
User provided data encrypted to the memo key of the "to" account.
Definition: transfer.hpp:94
graphene::protocol::transfer_operation::fee_params_t
Definition: transfer.hpp:47
graphene::protocol::override_transfer_operation
Allows the issuer of an asset to transfer an asset from any account to any account if they have overr...
Definition: transfer.hpp:77
graphene::protocol::transfer_operation::memo
optional< memo_data > memo
User provided data encrypted to the memo key of the "to" account.
Definition: transfer.hpp:61
graphene::protocol::override_transfer_operation::validate
void validate() const
Definition: transfer.cpp:57
graphene
Definition: api.cpp:48
graphene::protocol::override_transfer_operation::calculate_fee
share_type calculate_fee(const fee_params_t &k) const
Definition: transfer.cpp:48
raw.hpp
fc::safe
Definition: safe.hpp:26