lib/bitshares/wallet.rb in bitshares-0.1.3.pre vs lib/bitshares/wallet.rb in bitshares-0.1.4.pre
- old
+ new
@@ -43,11 +43,11 @@
def locked?
!unlocked?
end
- def method_missing(name, *args)
- Bitshares::Client::rpc.request('wallet_' + name.to_s, args)
+ def method_missing(m, *args)
+ Bitshares::Client::rpc.request('wallet_' + m.to_s, args)
end
end
end