Skip to content

Commit

Permalink
disable swapmit.
Browse files Browse the repository at this point in the history
  • Loading branch information
luozhaohui committed Sep 19, 2018
1 parent a2c5dcb commit f586773
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/explorer/extensions/command_extension_func.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
#include <metaverse/explorer/extensions/commands/sendasset.hpp>
#include <metaverse/explorer/extensions/commands/sendassetfrom.hpp>
#include <metaverse/explorer/extensions/commands/swaptoken.hpp>
#include <metaverse/explorer/extensions/commands/swapmit.hpp>
// #include <metaverse/explorer/extensions/commands/swapmit.hpp>
#include <metaverse/explorer/extensions/commands/listdids.hpp>
#include <metaverse/explorer/extensions/commands/deletelocalasset.hpp>
#include <metaverse/explorer/extensions/commands/issue.hpp>
Expand Down Expand Up @@ -197,7 +197,7 @@ void broadcast_extension(const function<void(shared_ptr<command>)> func, std::os
func(make_shared<transfermit>());
func(make_shared<listmits>());
func(make_shared<getmit>());
func(make_shared<swapmit>());
// func(make_shared<swapmit>());

os <<"\r\n";
//did
Expand Down Expand Up @@ -363,8 +363,8 @@ shared_ptr<command> find_extension(const string& symbol)
return make_shared<listmits>();
if (symbol == getmit::symbol())
return make_shared<getmit>();
if (symbol == swapmit::symbol())
return make_shared<swapmit>();
// if (symbol == swapmit::symbol())
// return make_shared<swapmit>();

// did
if (symbol == registerdid::symbol())
Expand Down

0 comments on commit f586773

Please sign in to comment.