Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

raise PushContractTransactionException(response.stderr) eosjs_python.Exceptions.PushContractTransactionException: b'{"code":500,"message":"Internal Service Error","error":{"code":3050003,"name":"eosio_assert_message_exception","what":"eosio_assert_message assertion failure","details":[{"message":"assertion failure with message: symbol precision mismatch","file":"wasm_interface.cpp","line_number":917,"method":"eosio_assert"},{"message":"pending console output: ","file":"apply_context.cpp","line_number":72,"method":"exec_one"}]}}\n' #9

Open
yodalang opened this issue Feb 4, 2019 · 0 comments

Comments

@yodalang
Copy link

yodalang commented Feb 4, 2019

I just tried to send some IQ token to some exchange and got this error message:

raise PushContractTransactionException(response.stderr)
eosjs_python.Exceptions.PushContractTransactionException: b'{"code":500,"message":"Internal Service Error","error":{"code":3050003,"name":"eosio_assert_message_exception","what":"eosio_assert_message assertion failure","details":[{"message":"assertion failure with message: symbol precision mismatch","file":"wasm_interface.cpp","line_number":917,"method":"eosio_assert"},{"message":"pending console output: ","file":"apply_context.cpp","line_number":72,"method":"exec_one"}]}}\n'

my code is :

from eosjs_python import Eos
import json

me = {
"type": "sell-limit",
"symbol": "everipediaiq-iq-eos",
"price": "0.0010",
"channel": "API"
}
memo = json.dumps(me)
print(type(memo))
eos = Eos({
'http_address': 'https://eos.greymass.com',
'key_provider': '####'
})

b = eos.push_transaction('everipediaiq','transfer','####','active',{
"from":"####",
"to":"newdexpocket",
"quantity":"10.0000 IQ",
"memo":memo
})

please help me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant