mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-20 06:48:15 +00:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
// @flow
|
|
import BaseNode from './base';
|
|
|
|
export default class RPCNode extends BaseNode {
|
|
endpoint: string;
|
|
constructor(endpoint: string) {
|
|
super();
|
|
this.endpoint = endpoint;
|
|
}
|
|
}
|