Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Add first class support for converting ABIs themselves to/from json/bin/hex #9477

Merged
merged 1 commit into from
Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/abieos
Submodule abieos updated 4 files
+183 −130 include/eosio/abi.hpp
+45 −4 src/abieos.cpp
+11 −4 src/abieos.h
+129 −7 src/test.cpp
6 changes: 0 additions & 6 deletions libraries/rodeos/wasm_ql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ using eosio::ship_protocol::transaction_trace_v0;

namespace eosio {

// todo: move to abieos
template <typename T, typename S>
void to_json(const might_not_exist<T>& val, S& stream) {
return to_json(val.value, stream);
}

// todo: abieos support for pair. Used by extensions_type.
template <typename S>
void to_json(const std::pair<uint16_t, std::vector<char>>&, S& stream) {
Expand Down