binance-ruby 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/binance/api/error.rb +2 -0
- data/lib/binance/api/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0b8a2d2b8699dd1ab11f5c4927f492f1083178f6c490b2f128bec3e17519142
|
|
4
|
+
data.tar.gz: d0f3a90df602d2218abb7a479ee239b25c45a3c556350cd1a044d0fff2e1d123
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e79efbfe09d9046dbec1de668d00e34811170eb5fa323f4b1999bc5586f960d9f7790093e753b861f6c2b7cf0af687cb3b12f3afa020a99d67426930dbec331
|
|
7
|
+
data.tar.gz: 16cfb386ab4ea3bfd87067b3cffbeca50145b7108453bff5edf95b84a1fe90a0f2a7caf21e8927b233624c86263f7fe8c6df3f691d10b4fffa628f20445d5089
|
data/lib/binance/api/error.rb
CHANGED
|
@@ -19,6 +19,7 @@ module Binance
|
|
|
19
19
|
when 1003 then TooManyRequests
|
|
20
20
|
when 1006 then UnexpectedResponse
|
|
21
21
|
when 1007 then Timeout
|
|
22
|
+
when 1013 then InvalidQuantity
|
|
22
23
|
when 1014 then UnknownOrderComposition
|
|
23
24
|
when 1015 then TooManyOrders
|
|
24
25
|
when 1016 then ServiceShuttingDown
|
|
@@ -84,6 +85,7 @@ module Binance
|
|
|
84
85
|
class TooManyRequests < Error; end
|
|
85
86
|
class UnexpectedResponse < Error; end
|
|
86
87
|
class Timeout < Error; end
|
|
88
|
+
class InvalidQuantity < Error; end
|
|
87
89
|
class UnknownOrderComposition < Error; end
|
|
88
90
|
class TooManyOrders < Error; end
|
|
89
91
|
class ServiceShuttingDown < Error; end
|
data/lib/binance/api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: binance-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Peterson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: codecov
|
|
@@ -206,5 +206,5 @@ requirements: []
|
|
|
206
206
|
rubygems_version: 3.1.6
|
|
207
207
|
signing_key:
|
|
208
208
|
specification_version: 4
|
|
209
|
-
summary: binance-ruby-1.1.
|
|
209
|
+
summary: binance-ruby-1.1.2
|
|
210
210
|
test_files: []
|