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

Sign tx in TEST network #260

Closed
lilcryptopump opened this issue Aug 31, 2019 · 3 comments
Closed

Sign tx in TEST network #260

lilcryptopump opened this issue Aug 31, 2019 · 3 comments

Comments

@lilcryptopump
Copy link

I try to sign a transaction, but I get an error

import struct
from binascii import hexlify, unhexlify

from bitshares import BitShares
from bitshares.blockchain import Blockchain
from bitsharesbase.signedtransactions import Signed_Transaction
from bitsharesbase import transactions, memo, account, operations, objects

from graphenebase.transactions import formatTimeFromNow

blockchain = Blockchain(
	bitshares_instance = BitShares(
	"wss://node.testnet.bitshares.eu",
	nobroadcast=False,
	bundle=False,
	)
)

wifs = ["***"]

op = operations.Transfer(**{
	"fee": objects.Asset(amount=100, asset_id="1.3.0"),
	"from": "1.2.24152",
	"to": "1.2.24141",
	"amount": 100,
	"prefix": "TEST",
	}
)

ops = []
ops.append(objects.Operation(op))
info = blockchain.info()

tx = Signed_Transaction(
	ref_block_num = info["head_block_number"],
	ref_block_prefix = struct.unpack_from("<I", unhexlify(info["head_block_id"]), 4)[0],
	expiration = formatTimeFromNow(30),
	operations=ops,
)

w = tx.sign(wifs, chain="TEST")
print(w)
Traceback (most recent call last):
  File "transfer_back_to_issuer.py", line 105, in <module>
    w = tx.sign(wifs, chain="TEST")
  File "/home/linux_username/.local/lib/python3.7/site-packages/graphenebase/signedtransactions.py", line 188, in sign
    self.deriveDigest(chain)
  File "/home/linux_username/.local/lib/python3.7/site-packages/graphenebase/signedtransactions.py", line 148, in deriveDigest
    self.message = unhexlify(self.chainid) + bytes(self)
  File "/home/linux_username/.local/lib/python3.7/site-packages/graphenebase/objects.py", line 201, in __bytes__
    b += bytes(value)
  File "/home/linux_username/.local/lib/python3.7/site-packages/graphenebase/types.py", line 76, in __bytes__
    return struct.pack("<H", self.data)
struct.error: ushort format requires 0 <= number <= (0x7fff * 2 + 1)

The error disappears if ref_block_num is reduced, but how to sign a transaction with the current number of blocks?

@lilcryptopump
Copy link
Author

bitshares==0.4.0
graphenelib==1.1.20

Python 3.7.0

@lilcryptopump
Copy link
Author

Worked with bitshares.finalizeOp.
Sorry for issues

@qualwebs
Copy link

qualwebs commented May 10, 2022

``> Worked with bitshares.finalizeOp. Sorry for issues

Hi @lilcryptopump
I'm using the finalizeOp but throwing error
testnet.finalizeOp(ops=[op], account=account, permission='active', ) File "/usr/local/lib/python3.8/dist-packages/graphenecommon/chain.py", line 235, in finalizeOp self.txbuffer.sign() File "/usr/local/lib/python3.8/dist-packages/graphenecommon/transactionbuilder.py", line 480, in sign raise MissingKeyError graphenecommon.exceptions.MissingKeyError

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

2 participants