Skip to content

Commit

Permalink
small comment changes, remove tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Brean0 committed Aug 5, 2023
1 parent c58be9b commit 1e026b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protocol/contracts/beanstalk/metadata/MetadataImage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ contract MetadataImage {
}

function powerOfTen(uint256 stem) internal pure returns (string memory) {
// if else ladder to determine how many digits to show
// if else ladder to determine how many digits to show.
if (stem < 1e6) {
return stemDecimals(stem, 5);
} else if (stem < 1e7) {
Expand Down
2 changes: 1 addition & 1 deletion protocol/test/Silo.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ describe('Silo', function () {

it("properly gives an URI", async function () {
await this.season.farmSunrises(1000);

depositmetadata = await fs.readFileSync(__dirname + '/data/base64EncodedImageBean.txt', 'utf-8');
depositID1 = '0xBEA0000029AD1c77D3d5D23Ba2D8893dB9d1Efab000000000000000000000002';
expect(await this.metadata.uri(depositID1)).to.eq(depositmetadata);
Expand Down

0 comments on commit 1e026b2

Please sign in to comment.