Closed derekhendrickx closed 6 years ago
I removed the unused mut for the macros ben_map and ben_list. Those were generating a warning from the compiler: warning: variable does not need to be mutable.
mut
ben_map
ben_list
warning: variable does not need to be mutable
The related issue is https://github.com/GGist/bip-rs/issues/135.
Huh, looks like the nightly channel wasnt emitting this warning, but I did see it on stable.
Thanks for the fix!
I removed the unused
mut
for the macrosben_map
andben_list
. Those were generating a warning from the compiler:warning: variable does not need to be mutable
.The related issue is https://github.com/GGist/bip-rs/issues/135.