class TezosClient::InvalidActivation

Attributes

pkh[R]

Public Class Methods

new(error:, **_args) click to toggle source
Calls superclass method TezosClient::RpcRequestFailure::new
# File lib/tezos_client/exceptions.rb, line 32
def initialize(error:, **_args)
  @pkh = error[:pkh]
  @message = "Invalid activation (pkh: #{pkh})"
  super
end