2017-07-04 01:25:01 +00:00
|
|
|
// @flow
|
|
|
|
import BaseNode from './base';
|
|
|
|
|
|
|
|
export default class RPCNode extends BaseNode {
|
2017-07-04 03:21:19 +00:00
|
|
|
endpoint: string;
|
|
|
|
constructor(endpoint: string) {
|
|
|
|
super();
|
|
|
|
this.endpoint = endpoint;
|
|
|
|
}
|
2017-07-04 01:25:01 +00:00
|
|
|
}
|