Module: BSV::Wallet::Serializer::WaitForAuthentication::Result
- Defined in:
- lib/bsv/wallet/serializer/status.rb
Class Method Summary collapse
-
.deserialize(_bytes = nil) ⇒ Hash
{ authenticated: true }.
-
.serialize(_result = {}) ⇒ String
Empty binary.
Class Method Details
.deserialize(_bytes = nil) ⇒ Hash
Returns { authenticated: true }.
78 79 80 |
# File 'lib/bsv/wallet/serializer/status.rb', line 78 def deserialize(_bytes = nil) { authenticated: true } end |
.serialize(_result = {}) ⇒ String
Returns empty binary.
72 73 74 |
# File 'lib/bsv/wallet/serializer/status.rb', line 72 def serialize(_result = {}) ''.b end |