Skip to content

Commit

Permalink
adding networkName to Network Object
Browse files Browse the repository at this point in the history
  • Loading branch information
pellicceama committed Jan 29, 2023
1 parent 12afbc5 commit 842da5c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/model/Network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class Network extends ChainObject {
}

type: 'network';
networkName: string;

constructor(info: Partial<Network>) {
super(info);
Expand Down Expand Up @@ -45,5 +46,6 @@ export class Network extends ChainObject {
}
}
this.type = 'network';
this.networkName = info.networkName;
}
}

0 comments on commit 842da5c

Please sign in to comment.