Minor bug
client.SetRate was not part of the AbiosSdk interface so it could not be used if client was declared unitiliazed.
I.e
a := abios.New()
a.SetRate(1,1) // Works
var b abios.AbiosSdk
b = abios.New()
b.SetRate(1, 1) // Doesn't work
client.SetRate was not part of the AbiosSdk interface so it could not be used if client was declared unitiliazed.
I.e
a := abios.New()
a.SetRate(1,1) // Works
var b abios.AbiosSdk
b = abios.New()
b.SetRate(1, 1) // Doesn't work