I am trying to send a transaction 20 minutes into the future but I end up with this error
Traceback (most recent call last):
File "C:\Users\0xEarl\anaconda3\lib\site-packages\algosdk\v2client\algod.py", line 73, in algod_request
resp = urlopen(req)
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 222, in urlopen
return opener.open(url, data, timeout)
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 531, in open
response = meth(req, response)
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 640, in http_response
response = self.parent.error(
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 569, in error
return self._call_chain(*args)
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 502, in _call_chain
result = func(*args)
File "C:\Users\0xEarl\anaconda3\lib\urllib\request.py", line 649, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 400: Bad Request
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\0xEarl\anaconda3\lib\site-packages\algosdk\v2client\algod.py", line 78, in algod_request
raise error.AlgodHTTPError(json.loads(e)["message"], code)
algosdk.error.AlgodHTTPError: TransactionPool.Remember: txn dead: round 16527277 outside of 16527542--16528542
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "c:/Users/0xEarl/Desktop/Learn_Algo/futuretx.py", line 41, in <module>
txid = algod_client.send_transaction(signed_txn) # send the transaction
File "C:\Users\0xEarl\anaconda3\lib\site-packages\algosdk\v2client\algod.py", line 195, in send_transaction
return self.send_raw_transaction(encoding.msgpack_encode(txn),
File "C:\Users\0xEarl\anaconda3\lib\site-packages\algosdk\v2client\algod.py", line 214, in send_raw_transaction
return self.algod_request("POST", req, data=txn, **kwargs)["txId"]
File "C:\Users\0xEarl\anaconda3\lib\site-packages\algosdk\v2client\algod.py", line 80, in algod_request
raise error.AlgodHTTPError(e, code)
algosdk.error.AlgodHTTPError: {"message":"TransactionPool.Remember: txn dead: round 16527277 outside of 16527542--16528542"}
I attached the code as a image
ignore the empty variables I removed for safety concerns