Skip to content

Commit 08eda5f

Browse files
Merge pull request #5671 from BitGo/COIN-3138-add-frankfurt-default-trust
chore: add frankfurt default trust
2 parents a7fb0ac + 3f2cdec commit 08eda5f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

modules/statics/src/account.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export class AccountCoin extends BaseCoin {
3939
CoinFeature.CUSTODY_BITGO_SINGAPORE,
4040
CoinFeature.CUSTODY_BITGO_KOREA,
4141
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
42+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
4243
];
4344

4445
// Need to gate some high risk coin from SINGAPORE trust

modules/statics/test/unit/coins.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,6 @@ coins.forEach((coin, coinName) => {
685685
coin.features.includes(CoinFeature.CUSTODY_BITGO_NEW_YORK).should.eql(false);
686686
coin.features.includes(CoinFeature.CUSTODY_BITGO_GERMANY).should.eql(false);
687687
coin.features.includes(CoinFeature.CUSTODY_BITGO_SWITZERLAND).should.eql(false);
688-
coin.features.includes(CoinFeature.CUSTODY_BITGO_FRANKFURT).should.eql(false);
689688
});
690689
} else {
691690
it('should return true for CUSTODY and CUSTODY_BITGO_TRUST coin feature', () => {
@@ -700,7 +699,6 @@ coins.forEach((coin, coinName) => {
700699
coin.features.includes(CoinFeature.CUSTODY_BITGO_NEW_YORK).should.eql(false);
701700
coin.features.includes(CoinFeature.CUSTODY_BITGO_GERMANY).should.eql(false);
702701
coin.features.includes(CoinFeature.CUSTODY_BITGO_SWITZERLAND).should.eql(false);
703-
coin.features.includes(CoinFeature.CUSTODY_BITGO_FRANKFURT).should.eql(false);
704702
});
705703
}
706704
});

0 commit comments

Comments
 (0)