MyCrypto/common/libs/nodes/rpc.js

11 lines
192 B
JavaScript
Raw Normal View History

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
}