Skip to content

Commit

Permalink
Remove track member/accessor from tangle
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Gardner committed Jan 16, 2019
1 parent f27c687 commit 5240a60
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
7 changes: 0 additions & 7 deletions Tangle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,6 @@ const t_ptrTx& Tangle::giveGenBlock() const
return m_genesisBlock;
}

//IGNORE FOR NOW
//returs reference to transaction we are tracking
std::vector<t_ptrTx>& Tangle::getTracker()
{
return trackTx;
}

// Tangle def END

/*
Expand Down
2 changes: 0 additions & 2 deletions Tangle.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ class Tangle
private:
std::vector<t_ptrTx> m_tips;
t_ptrTx m_genesisBlock;
//IGNORE holds pointers to transactions we want totrack the weights of during the simulation
std::vector<t_ptrTx> trackTx;

//generator in Tangle as creating separate gen's for each actor that acted differently proved hard
//i appreciate this entire simulation needs refactoring
Expand Down

0 comments on commit 5240a60

Please sign in to comment.