Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
setters for feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbreak committed Dec 5, 2017
1 parent 15db54d commit 73aaa82
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/tub.sol
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,18 @@ contract SaiTub is DSThing, SaiTubEvents {
else return;
}

//--Price-feed-setters----------------------------------------------

function setPip(DSValue pip_) public note auth {
pip = pip_;
}
function setPep(DSValue pep_) public note auth {
pep = pep_;
}
function setVox(SaiVox vox_) public note auth {
vox = vox_;
}

//--Collateral-wrapper----------------------------------------------

// Wrapper ratio (gem per skr)
Expand Down

0 comments on commit 73aaa82

Please sign in to comment.