-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oracle Plugin Forex #41
base: master
Are you sure you want to change the base?
Conversation
return price, fmt.Errorf("wrong base %s", to) | ||
} | ||
|
||
price.Symbol = s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add below statement after line 138 as we introduced some update in the master.
price.Volume = types.DefaultVolume.String()
|
||
func main() { | ||
conf := common.ResolveConf(os.Args[0], &defaultConfig) | ||
adapter := common.NewPlugin(conf, NewNPClient(conf), version) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we made few update on master, now you need to rebase it by adding specifying the plugin type when you create a new plugin:
adapter := common.NewPlugin(conf, NewNPClient(conf), version, types.SrcCEX, nil)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much for your contributions, please also update the README and the sample configuration file, it will help the end user to use the new plugin.
BTW, you need update the make file to get your plugin built.
Thank you for reviewing my code. Thank you |
All Submissions: