Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
hive
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hive
Merge requests
!150
Recurrent transfers feature
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Recurrent transfers feature
recurrent_transfers_class
into
develop
Overview
76
Commits
18
Pipelines
0
Changes
3
Merged
Howo
requested to merge
recurrent_transfers_class
into
develop
4 years ago
Overview
22
Commits
18
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Viewing commit
423484b2
Show latest version
3 files
+
26
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
423484b2
wip
· 423484b2
Howo
authored
4 years ago
libraries/chain/include/hive/chain/util/recurrent_transfer_processor.hpp
0 → 100644
+
23
−
0
Options
#pragma once
#include
<hive/chain/hive_object_types.hpp>
#include
<hive/protocol/asset.hpp>
namespace
hive
{
namespace
chain
{
using
namespace
protocol
;
struct
recurrent_transfer_data
{
time_point_sec
time
;
account_name_type
from
;
account_name_type
to
;
asset
amount
;
/// The memo is plain-text, any encryption on the memo is up to a higher level protocol.
string
memo
;
};
}
}
// namespace hive::chain
FC_REFLECT
(
hive
::
chain
::
recurrent_transfer_data
,
(
time
)(
from
)(
to
)(
amount
)(
memo
)
)
Loading