Sha256: b07ac86185a45d948f8859511e27e507acf4ad06b13b5d30969040f161a0ad2f
Contents?: true
Size: 597 Bytes
Versions: 11
Compression:
Stored size: 597 Bytes
Contents
# Automatically generated on 2015-05-13T15:00:04-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct DecoratedSignature # { # opaque hint[4]; // first 4 bytes of the public key, used as a hint # uint512 signature; // actual signature # }; # # =========================================================================== module Stellar class DecoratedSignature < XDR::Struct attribute :hint, XDR::Opaque[4] attribute :signature, Uint512 end end
Version data entries
11 entries across 11 versions & 1 rubygems