Skip to content

Commit 5bec128

Browse files
authored
Merge pull request #135 from ampleforth/name
Update token name
2 parents 055eb16 + aac7377 commit 5bec128

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports = {
5050
// project-specific
5151
"rebase", "gons", "frg", "rng", "blockchain", "minlot",
5252
"redemptions", "rebased", "ganache", "ethclient",
53-
"bytecode", "Binance", "ethereum", "opcode", "cpi",
53+
"bytecode", "Binance", "ethereum", "opcode", "cpi", "ampleforth",
5454

5555
// names
5656
"nithin",

contracts/UFragments.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ contract UFragments is ERC20Detailed, Ownable {
172172
public
173173
initializer
174174
{
175-
ERC20Detailed.initialize("UFragments", "AMPL", uint8(DECIMALS));
175+
ERC20Detailed.initialize("Ampleforth", "AMPL", uint8(DECIMALS));
176176
Ownable.initialize(owner_);
177177

178178
rebasePaused = false;

test/unit/UFragments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ contract('UFragments:Initialization', function (accounts) {
6363
});
6464

6565
it('should set detailed ERC20 parameters', async function () {
66-
expect(await uFragments.name.call()).to.eq('UFragments');
66+
expect(await uFragments.name.call()).to.eq('Ampleforth');
6767
expect(await uFragments.symbol.call()).to.eq('AMPL');
6868
(await uFragments.decimals.call()).should.be.bignumber.eq(DECIMALS);
6969
});

0 commit comments

Comments
 (0)