Skip to content

Commit

Permalink
first lib loading bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Borrey committed Feb 1, 2017
1 parent ce1be86 commit c51a125
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ infura.get_balance('0x81F631b8615EaB75d38DaC4d4bce4A5b63e10310') #=> 59168602485
# This can be qualified with 4 different tags to get the balance at the tag's time.
# 'latest' - latest balance (default) with at least 1 confirmation
# 'pending' - balance including pending transactions
# 'earliest' - balance at the time of the genesis block
# 'earliest' - balance at the time of the genesis block or earliest known block
# '0x123' - balance at the time of chain height `0x123` (hex string)

# balance including unconfirmed transactions
Expand Down
4 changes: 2 additions & 2 deletions lib/infura_ruby.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'infura_ruby/version'
require 'infura_ruby/client'
require_relative 'infura_ruby/version'
require_relative 'infura_ruby/client'

module InfuraRuby
class InvalidApiKeyError < StandardError; end
Expand Down
2 changes: 1 addition & 1 deletion lib/infura_ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InfuraRuby
VERSION = '1.2.0'
VERSION = '1.2.1'
end

0 comments on commit c51a125

Please sign in to comment.