Skip to content

Commit c4cd6c8

Browse files
authored
Merge pull request #6070 from BitGo/WIN-5065-fix
fix: send statics coin to substrate class
2 parents b364bb1 + 9ed860e commit c4cd6c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/sdk-coin-polyx/src/polyx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { SubstrateCoin } from '@bitgo/abstract-substrate';
1515
export class Polyx extends SubstrateCoin {
1616
protected readonly _staticsCoin: Readonly<StaticsBaseCoin>;
1717
protected constructor(bitgo: BitGoBase, staticsCoin?: Readonly<StaticsBaseCoin>) {
18-
super(bitgo);
18+
super(bitgo, staticsCoin);
1919

2020
if (!staticsCoin) {
2121
throw new Error('missing required constructor parameter staticsCoin');

0 commit comments

Comments
 (0)