2019-04-14 04:38:56 +00:00
|
|
|
#include <graphene/protocol/chain_parameters.hpp>
|
|
|
|
|
#include <graphene/protocol/fee_schedule.hpp>
|
|
|
|
|
|
2019-05-19 09:38:40 +00:00
|
|
|
#include <fc/io/raw.hpp>
|
|
|
|
|
|
2019-04-14 04:38:56 +00:00
|
|
|
namespace graphene { namespace protocol {
|
|
|
|
|
chain_parameters::chain_parameters() {
|
|
|
|
|
current_fees = std::make_shared<fee_schedule>();
|
|
|
|
|
}
|
2019-05-19 09:38:40 +00:00
|
|
|
}}
|
|
|
|
|
|