Skip to content

Commit a25f211

Browse files
authored
Revert "chore(coins): test fix - replace ofcgteth with ofchteth"
1 parent 3eb1465 commit a25f211

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

modules/bitgo/test/v2/unit/coins/ofcToken.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,16 @@ describe('OFC:', function () {
6363
teth.isValidAddress('bg-5b2b80eafbdf94d5030bb23f9b56ad64nnn').should.be.false;
6464
});
6565

66-
it('test crypto coins for ofchteth', function () {
67-
const hteth = bitgo.coin('ofchteth');
68-
hteth.getChain().should.equal('ofchteth');
69-
hteth.getFullName().should.equal('Test Holesky Ether');
70-
hteth.getBaseFactor().should.equal(PRECISION_18);
71-
hteth.isValidAddress('0x801b2954117cf3439479df391bed2f472e4bd4b8').should.be.true;
72-
hteth.isValidAddress('2NBSpUjBQUg4BmWUft8m2VePGDEZ2QBFM7X').should.be.false;
73-
hteth.isValidAddress('3NBSpUjBQUg4BmWUft8m2VePGDEZ2QBFM7X').should.be.false;
74-
hteth.isValidAddress('bg-5b2b80eafbdf94d5030bb23f9b56ad64').should.be.true;
75-
hteth.isValidAddress('bg-5b2b80eafbdf94d5030bb23f9b56ad64nnn').should.be.false;
66+
it('test crypto coins for ofcgteth', function () {
67+
const gteth = bitgo.coin('ofcgteth');
68+
gteth.getChain().should.equal('ofcgteth');
69+
gteth.getFullName().should.equal('Test Goerli Ether');
70+
gteth.getBaseFactor().should.equal(PRECISION_18);
71+
gteth.isValidAddress('0x801b2954117cf3439479df391bed2f472e4bd4b8').should.be.true;
72+
gteth.isValidAddress('2NBSpUjBQUg4BmWUft8m2VePGDEZ2QBFM7X').should.be.false;
73+
gteth.isValidAddress('3NBSpUjBQUg4BmWUft8m2VePGDEZ2QBFM7X').should.be.false;
74+
gteth.isValidAddress('bg-5b2b80eafbdf94d5030bb23f9b56ad64').should.be.true;
75+
gteth.isValidAddress('bg-5b2b80eafbdf94d5030bb23f9b56ad64nnn').should.be.false;
7676
});
7777

7878
it('test crypto coins for ofcavaxc', function () {

modules/statics/src/coins/ofcCoins.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ export const ofcCoins = [
180180
tofc('b4a75a39-3fd2-4866-aaed-75b969df1d98', 'ofctbtc4', 'Testnet4 Bitcoin', 8, UnderlyingAsset.BTC, CoinKind.CRYPTO),
181181
tofc('4bf9d3a3-04f7-4c48-9a26-12b36bbecfb7', 'ofctdot', 'Test Polkadot', 12, UnderlyingAsset.DOT, CoinKind.CRYPTO),
182182
tofc('e916ff23-7521-4046-9bea-b92788acc23b', 'ofcteth', 'Test Ether', 18, UnderlyingAsset.ETH, CoinKind.CRYPTO),
183-
// tofc(
184-
// 'a90ab5b8-e156-4d40-9cd7-b170416ba7de',
185-
// 'ofcgteth',
186-
// 'Test Goerli Ether',
187-
// 18,
188-
// UnderlyingAsset.ETH,
189-
// CoinKind.CRYPTO
190-
// ),
183+
tofc(
184+
'a90ab5b8-e156-4d40-9cd7-b170416ba7de',
185+
'ofcgteth',
186+
'Test Goerli Ether',
187+
18,
188+
UnderlyingAsset.ETH,
189+
CoinKind.CRYPTO
190+
),
191191
tofc(
192192
'dd7fd2c8-df50-4f8b-96ac-ff5f874c80ca',
193193
'ofchteth',

0 commit comments

Comments
 (0)