Skip to content

Commit

Permalink
enumivo.saving to enumivo.save
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenthefox committed May 24, 2018
1 parent 7f3f258 commit 9cda8cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/enumivo.system/producer_pay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace enumivosystem {
{N(enumivo), asset(new_tokens), std::string("issue tokens for producer pay and savings")} );

INLINE_ACTION_SENDER(enumivo::token, transfer)( N(enumivo.coin), {N(enumivo),N(active)},
{ N(enumivo), N(enumivo.saving), asset(to_savings), "unallocated inflation" } );
{ N(enumivo), N(enumivo.save), asset(to_savings), "unallocated inflation" } );

INLINE_ACTION_SENDER(enumivo::token, transfer)( N(enumivo.coin), {N(enumivo),N(active)},
{ N(enumivo), N(enumivo.bpay), asset(to_per_block_pay), "fund per-block bucket" } );
Expand Down
2 changes: 1 addition & 1 deletion unittests/bootseq_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ BOOST_FIXTURE_TEST_CASE( bootseq_test, bootseq_tester ) {
try {

// Create enumivo.msig and enumivo.coin
create_accounts({N(enumivo.msig), N(enumivo.coin), N(enumivo.ram), N(enumivo.rfee), N(enumivo.stk), N(enumivo.vpay), N(enumivo.bpay), N(enumivo.saving) });
create_accounts({N(enumivo.msig), N(enumivo.coin), N(enumivo.ram), N(enumivo.rfee), N(enumivo.stk), N(enumivo.vpay), N(enumivo.bpay), N(enumivo.save) });

// Set code for the following accounts:
// - enumivo (code: enumivo.bios) (already set by tester constructor)
Expand Down
2 changes: 1 addition & 1 deletion unittests/enumivo_system_tester.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class enumivo_system_tester : public TESTER {
produce_blocks( 2 );

create_accounts({ N(enumivo.coin), N(enumivo.ram), N(enumivo.rfee), N(enumivo.stk),
N(enumivo.bpay), N(enumivo.vpay), N(enumivo.saving) });
N(enumivo.bpay), N(enumivo.vpay), N(enumivo.save) });

produce_blocks( 100 );

Expand Down

0 comments on commit 9cda8cf

Please sign in to comment.