From 843ed6452f6bfc7deb74b660dfcd7758ba6a1775 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Sat, 9 Jun 2018 09:11:29 -0400 Subject: [PATCH] FIx get_account serialization --- plugins/chain_plugin/chain_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chain_plugin/chain_plugin.cpp b/plugins/chain_plugin/chain_plugin.cpp index 0a07bb4c58e..e8c665366b4 100644 --- a/plugins/chain_plugin/chain_plugin.cpp +++ b/plugins/chain_plugin/chain_plugin.cpp @@ -1024,7 +1024,7 @@ read_only::get_account_results read_only::get_account( const get_account_params& if ( it != idx.end() ) { vector data; copy_inline_row(*it, data); - result.self_delegated_bandwidth = abis.binary_to_variant( "self_delegated_bandwidth", data ); + result.self_delegated_bandwidth = abis.binary_to_variant( "delegated_bandwidth", data ); } }