fix(eos-bindings): minor bug fixes to bring eos bindings up to main

specifically, renamed EosIO -> EOSio, and updated read_helm_table signature
This commit is contained in:
2025-06-12 14:21:28 -04:00
parent e5d796f177
commit dd28e555c8
5 changed files with 33 additions and 29 deletions

View File

@@ -28,7 +28,7 @@
#include <string>
namespace serif::eos {
EOSio::EOSio(const std::string filename) : m_filename(filename) {
EOSio::EOSio(const std::string &filename) : m_filename(filename) {
load();
}