Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
hive
hive-js
Commits
acae3a6d
Commit
acae3a6d
authored
Oct 27, 2020
by
Mahdi Yari
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-hf23-refrences' into 'master'
Change warning messages See merge request
!16
parents
9e1e3f6d
f71cc919
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
doc/README.md
doc/README.md
+0
-2
src/broadcast/index.js
src/broadcast/index.js
+1
-1
src/utils.js
src/utils.js
+1
-1
No files found.
doc/README.md
View file @
acae3a6d
...
@@ -984,9 +984,7 @@ const props = {
...
@@ -984,9 +984,7 @@ const props = {
"account_subsidy_budget": 10000, // optional
"account_subsidy_budget": 10000, // optional
"account_subsidy_decay": 330782, // optional
"account_subsidy_decay": 330782, // optional
"maximum_block_size": 65536, // optional
"maximum_block_size": 65536, // optional
// "sbd_interest_rate": "0.000 HIVE", // for old api nodes - optional
"hbd_interest_rate": "0.000 HIVE", // optional
"hbd_interest_rate": "0.000 HIVE", // optional
// "sbd_exchange_rate": {"base": "0.250 HBD", "quote": "1.000 HIVE"}, // for old api nodes - optional
"hbd_exchange_rate": {"base": "0.250 HBD", "quote": "1.000 HIVE"}, // optional
"hbd_exchange_rate": {"base": "0.250 HBD", "quote": "1.000 HIVE"}, // optional
"url": "https://testurl", // optional
"url": "https://testurl", // optional
"new_signing_key": "Public Signing Key" // optional
"new_signing_key": "Public Signing Key" // optional
...
...
src/broadcast/index.js
View file @
acae3a6d
...
@@ -116,7 +116,7 @@ operations.forEach((operation) => {
...
@@ -116,7 +116,7 @@ operations.forEach((operation) => {
});
});
hiveBroadcast
.
updateOperations
=
()
=>
{
hiveBroadcast
.
updateOperations
=
()
=>
{
console
.
log
(
'
Warning: updateOperations() is
not necessary anymore
'
)
console
.
log
(
'
Warning:
call to
updateOperations() is
deprecated and can safely be removed
'
)
}
}
const
toString
=
obj
=>
typeof
obj
===
'
object
'
?
JSON
.
stringify
(
obj
)
:
obj
;
const
toString
=
obj
=>
typeof
obj
===
'
object
'
?
JSON
.
stringify
(
obj
)
:
obj
;
...
...
src/utils.js
View file @
acae3a6d
...
@@ -120,5 +120,5 @@ export function buildWitnessUpdateOp(
...
@@ -120,5 +120,5 @@ export function buildWitnessUpdateOp(
}
}
export
function
autoDetectApiVersion
()
{
export
function
autoDetectApiVersion
()
{
console
.
log
(
'
Warning: autoDetectApiVersion()
removed - it is not necessary anymore
'
)
console
.
log
(
'
Warning:
call to
autoDetectApiVersion()
is deprecated and can safely be removed
'
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment