Skip to content

Minor bug

Compare
Choose a tag to compare
@patstrom patstrom released this 18 Apr 13:08
· 82 commits to master since this release

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