tx_bad_seq error when funding the account in stellar private network2019 Community Moderator ElectionHow to do a transaction in a Private Stellar Blockchain Network?How much does it cost to exchange 100 USD for EURs on Stellar NetworkStellar Explorer for Private NetError related to lint, when trying to run 'npm test'Root account balance increase, when 100 billion amount got over in Stellar Private Network
Dukha vs legitimate need
The Key to the Door
Split a number into equal parts given the number of parts
PTIJ: Mouthful of Mitzvos
A bug in Excel? Conditional formatting for marking duplicates also highlights unique value
Paper published similar to PhD thesis
Is "cogitate" an appropriate word for this?
If nine coins are tossed, what is the probability that the number of heads is even?
What is "desert glass" and what does it do to the PCs?
Practical reasons to have both a large police force and bounty hunting network?
Why would the IRS ask for birth certificates or even audit a small tax return?
How do we objectively assess if a dialogue sounds unnatural or cringy?
Why can't we use freedom of speech and expression to incite people to rebel against government in India?
Does the in-code argument passing conventions used on PDP-11's have a name?
Are there other characters in the Star Wars universe who had damaged bodies and needed to wear an outfit like Darth Vader?
Convert an array of objects to array of the objects' values
When to use the term transposed instead of modulation?
Computing the volume of a simplex-like object with constraints
What does it mean when I add a new variable to my linear model and the R^2 stays the same?
Affine transformation of circular arc in 3D
Calculate total length of edges in select Voronoi diagram
Why do we call complex numbers “numbers” but we don’t consider 2 vectors numbers?
What is the oldest European royal house?
PTIJ: Aliyot for the deceased
tx_bad_seq error when funding the account in stellar private network
2019 Community Moderator ElectionHow to do a transaction in a Private Stellar Blockchain Network?How much does it cost to exchange 100 USD for EURs on Stellar NetworkStellar Explorer for Private NetError related to lint, when trying to run 'npm test'Root account balance increase, when 100 billion amount got over in Stellar Private Network
I am trying to create a Stellar Standalone network using my own network passphrase. I m able to set up stellar-core and horizon in my private network and it is working fine, I m able to get the root account balance through my nodejs code. But I m getting an tx_bad_seq when I m trying to create and fund an account. Here is my code
let kp = Stellar.Keypair.random();
let destinationId = kp.publicKey();
let sourceId = "GAZDSYG5HWIKHR76LUP5SGQBPYXYCFUIR45Z2WMOGITGY7JILDC6JAAF";
let sourceKeys = Stellar.Keypair.fromSecret("SDJ5AQWLIAYT22TCYSKOQALI3SNUMPAR63SEL73ASALDP6PYDN54FARM");
try
var sourceAccount = await server.loadAccount(sourceId);
var transaction = new Stellar.TransactionBuilder(sourceAccount)
.addOperation(
Stellar.Operation.createAccount(
destination: destinationId,
startingBalance: "100",
asset: Stellar.Asset.native()
))
.setTimeout(30)
.addMemo(Stellar.Memo.text('Creating account'))
.build();
transaction.sign(sourceKeys);
var result = await server.submitTransaction(transaction);
console.log(result);
res.send(result);
catch(error)
console.log(error);
res.send('Msg': 'error');
return;
res.send('Msg': 'Success');
Here is the error what I am getting
Error: Request failed with status code 400
app.js:221
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
message:"Request failed with status code 400"
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
response:Object status: 400, statusText: "Bad Request", headers: Object, …
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
data:Object type: "https://stellar.org/horizon-errors/transaction_fai…", title: "Transaction Failed", status: 400, …
detail:"The transaction failed when submitted to the stellar network. The `extras.result_codes` field on this response contains further details. Descriptions of each code can be found at: https://www.stellar.org/developers/learn/concepts/list-of-operations.html"
extras:Object envelope_xdr: "AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAA…", result_codes: Object, result_xdr: "AAAAAAAAAGT////7AAAAAA=="
envelope_xdr:"AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAAAAZAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAFx/mhAAAAABAAAAEENyZWF0aW5nIGFjY291bnQAAAABAAAAAAAAAAAAAAAAXsWc73Eg9YwKLtLg5HwSSx8mVxMgQzcBZwByeMRBIicAAAAAO5rKAAAAAAAAAAABKFjF5AAAAEBQMa0S5PH5zt9AMXqkX3b7cNuRo8KgybYc+1hUNaJNuU7T6G0FZyNq0/AalONixMRMyyUuMBQCF9SZSEVRDxkM"
result_codes:Object transaction: "tx_bad_seq"
transaction:"tx_bad_seq"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
result_xdr:"AAAAAAAAAGT////7AAAAAA=="
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
instance:"linux/0t8XxOn9u2-000004"
status:400
title:"Transaction Failed"
type:"https://stellar.org/horizon-errors/transaction_failed"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
headers:Object content-type: "application/problem+json; charset=utf-8", x-ratelimit-limit: "3600", x-ratelimit-remaining: "3596", …
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
status:400
statusText:"Bad Request"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
stack:"Error: Request failed with status code 400n at createError (/home/vijin/workspace/stellar/node_modules/axios/lib/core/createError.js:16:15)n at settle (/home/vijin/workspace/stellar/node_modules/axios/lib/core/settle.js:18:12)n at IncomingMessage.handleStreamEnd (/home/vijin/workspace/stellar/node_modules/axios/lib/adapters/http.js:201:11)n at emitNone (events.js:111:20)n at IncomingMessage.emit (events.js:208:7)n at endReadableNT (_stream_readable.js:1064:12)n at _combinedTickCallback (internal/process/next_tick.js:139:11)n at process._tickCallback (internal/process/next_tick.js:181:9)"
__proto__:Object constructor: , name: "Error", message: "", …
Please let me know why I am facing this issue. I followed this link to set up stellar-core and horizon servers
https://labs.imaginea.com/post/stellar-bc-wallet/
Here is the reply from http://$HORIZON
"_links":
"account":
"href": "http://localhost:8000/accounts/account_id",
"templated": true
,
"account_transactions":
"href": "http://localhost:8000/accounts/account_id/transactions?cursor,limit,order",
"templated": true
,
"friendbot":
"href": "http://localhost:8000/friendbot?addr",
"templated": true
,
"metrics":
"href": "http://localhost:8000/metrics"
,
"order_book":
"href": "http://localhost:8000/order_book?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer",
"templated": true
,
"self":
"href": "http://localhost:8000/"
,
"transaction":
"href": "http://localhost:8000/transactions/hash",
"templated": true
,
"transactions":
"href": "http://localhost:8000/transactions?cursor,limit,order",
"templated": true
,
"horizon_version": "v0.11.1-dirty",
"core_version": "v10.2.0",
"history_latest_ledger": 3138,
"history_elder_ledger": 1,
"core_latest_ledger": 1,
"core_elder_ledger": 0,
"network_passphrase": "Standalone Pramati Network ; Oct 2018",
"protocol_version": 10
stellar
add a comment |
I am trying to create a Stellar Standalone network using my own network passphrase. I m able to set up stellar-core and horizon in my private network and it is working fine, I m able to get the root account balance through my nodejs code. But I m getting an tx_bad_seq when I m trying to create and fund an account. Here is my code
let kp = Stellar.Keypair.random();
let destinationId = kp.publicKey();
let sourceId = "GAZDSYG5HWIKHR76LUP5SGQBPYXYCFUIR45Z2WMOGITGY7JILDC6JAAF";
let sourceKeys = Stellar.Keypair.fromSecret("SDJ5AQWLIAYT22TCYSKOQALI3SNUMPAR63SEL73ASALDP6PYDN54FARM");
try
var sourceAccount = await server.loadAccount(sourceId);
var transaction = new Stellar.TransactionBuilder(sourceAccount)
.addOperation(
Stellar.Operation.createAccount(
destination: destinationId,
startingBalance: "100",
asset: Stellar.Asset.native()
))
.setTimeout(30)
.addMemo(Stellar.Memo.text('Creating account'))
.build();
transaction.sign(sourceKeys);
var result = await server.submitTransaction(transaction);
console.log(result);
res.send(result);
catch(error)
console.log(error);
res.send('Msg': 'error');
return;
res.send('Msg': 'Success');
Here is the error what I am getting
Error: Request failed with status code 400
app.js:221
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
message:"Request failed with status code 400"
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
response:Object status: 400, statusText: "Bad Request", headers: Object, …
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
data:Object type: "https://stellar.org/horizon-errors/transaction_fai…", title: "Transaction Failed", status: 400, …
detail:"The transaction failed when submitted to the stellar network. The `extras.result_codes` field on this response contains further details. Descriptions of each code can be found at: https://www.stellar.org/developers/learn/concepts/list-of-operations.html"
extras:Object envelope_xdr: "AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAA…", result_codes: Object, result_xdr: "AAAAAAAAAGT////7AAAAAA=="
envelope_xdr:"AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAAAAZAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAFx/mhAAAAABAAAAEENyZWF0aW5nIGFjY291bnQAAAABAAAAAAAAAAAAAAAAXsWc73Eg9YwKLtLg5HwSSx8mVxMgQzcBZwByeMRBIicAAAAAO5rKAAAAAAAAAAABKFjF5AAAAEBQMa0S5PH5zt9AMXqkX3b7cNuRo8KgybYc+1hUNaJNuU7T6G0FZyNq0/AalONixMRMyyUuMBQCF9SZSEVRDxkM"
result_codes:Object transaction: "tx_bad_seq"
transaction:"tx_bad_seq"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
result_xdr:"AAAAAAAAAGT////7AAAAAA=="
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
instance:"linux/0t8XxOn9u2-000004"
status:400
title:"Transaction Failed"
type:"https://stellar.org/horizon-errors/transaction_failed"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
headers:Object content-type: "application/problem+json; charset=utf-8", x-ratelimit-limit: "3600", x-ratelimit-remaining: "3596", …
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
status:400
statusText:"Bad Request"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
stack:"Error: Request failed with status code 400n at createError (/home/vijin/workspace/stellar/node_modules/axios/lib/core/createError.js:16:15)n at settle (/home/vijin/workspace/stellar/node_modules/axios/lib/core/settle.js:18:12)n at IncomingMessage.handleStreamEnd (/home/vijin/workspace/stellar/node_modules/axios/lib/adapters/http.js:201:11)n at emitNone (events.js:111:20)n at IncomingMessage.emit (events.js:208:7)n at endReadableNT (_stream_readable.js:1064:12)n at _combinedTickCallback (internal/process/next_tick.js:139:11)n at process._tickCallback (internal/process/next_tick.js:181:9)"
__proto__:Object constructor: , name: "Error", message: "", …
Please let me know why I am facing this issue. I followed this link to set up stellar-core and horizon servers
https://labs.imaginea.com/post/stellar-bc-wallet/
Here is the reply from http://$HORIZON
"_links":
"account":
"href": "http://localhost:8000/accounts/account_id",
"templated": true
,
"account_transactions":
"href": "http://localhost:8000/accounts/account_id/transactions?cursor,limit,order",
"templated": true
,
"friendbot":
"href": "http://localhost:8000/friendbot?addr",
"templated": true
,
"metrics":
"href": "http://localhost:8000/metrics"
,
"order_book":
"href": "http://localhost:8000/order_book?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer",
"templated": true
,
"self":
"href": "http://localhost:8000/"
,
"transaction":
"href": "http://localhost:8000/transactions/hash",
"templated": true
,
"transactions":
"href": "http://localhost:8000/transactions?cursor,limit,order",
"templated": true
,
"horizon_version": "v0.11.1-dirty",
"core_version": "v10.2.0",
"history_latest_ledger": 3138,
"history_elder_ledger": 1,
"core_latest_ledger": 1,
"core_elder_ledger": 0,
"network_passphrase": "Standalone Pramati Network ; Oct 2018",
"protocol_version": 10
stellar
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago
add a comment |
I am trying to create a Stellar Standalone network using my own network passphrase. I m able to set up stellar-core and horizon in my private network and it is working fine, I m able to get the root account balance through my nodejs code. But I m getting an tx_bad_seq when I m trying to create and fund an account. Here is my code
let kp = Stellar.Keypair.random();
let destinationId = kp.publicKey();
let sourceId = "GAZDSYG5HWIKHR76LUP5SGQBPYXYCFUIR45Z2WMOGITGY7JILDC6JAAF";
let sourceKeys = Stellar.Keypair.fromSecret("SDJ5AQWLIAYT22TCYSKOQALI3SNUMPAR63SEL73ASALDP6PYDN54FARM");
try
var sourceAccount = await server.loadAccount(sourceId);
var transaction = new Stellar.TransactionBuilder(sourceAccount)
.addOperation(
Stellar.Operation.createAccount(
destination: destinationId,
startingBalance: "100",
asset: Stellar.Asset.native()
))
.setTimeout(30)
.addMemo(Stellar.Memo.text('Creating account'))
.build();
transaction.sign(sourceKeys);
var result = await server.submitTransaction(transaction);
console.log(result);
res.send(result);
catch(error)
console.log(error);
res.send('Msg': 'error');
return;
res.send('Msg': 'Success');
Here is the error what I am getting
Error: Request failed with status code 400
app.js:221
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
message:"Request failed with status code 400"
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
response:Object status: 400, statusText: "Bad Request", headers: Object, …
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
data:Object type: "https://stellar.org/horizon-errors/transaction_fai…", title: "Transaction Failed", status: 400, …
detail:"The transaction failed when submitted to the stellar network. The `extras.result_codes` field on this response contains further details. Descriptions of each code can be found at: https://www.stellar.org/developers/learn/concepts/list-of-operations.html"
extras:Object envelope_xdr: "AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAA…", result_codes: Object, result_xdr: "AAAAAAAAAGT////7AAAAAA=="
envelope_xdr:"AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAAAAZAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAFx/mhAAAAABAAAAEENyZWF0aW5nIGFjY291bnQAAAABAAAAAAAAAAAAAAAAXsWc73Eg9YwKLtLg5HwSSx8mVxMgQzcBZwByeMRBIicAAAAAO5rKAAAAAAAAAAABKFjF5AAAAEBQMa0S5PH5zt9AMXqkX3b7cNuRo8KgybYc+1hUNaJNuU7T6G0FZyNq0/AalONixMRMyyUuMBQCF9SZSEVRDxkM"
result_codes:Object transaction: "tx_bad_seq"
transaction:"tx_bad_seq"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
result_xdr:"AAAAAAAAAGT////7AAAAAA=="
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
instance:"linux/0t8XxOn9u2-000004"
status:400
title:"Transaction Failed"
type:"https://stellar.org/horizon-errors/transaction_failed"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
headers:Object content-type: "application/problem+json; charset=utf-8", x-ratelimit-limit: "3600", x-ratelimit-remaining: "3596", …
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
status:400
statusText:"Bad Request"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
stack:"Error: Request failed with status code 400n at createError (/home/vijin/workspace/stellar/node_modules/axios/lib/core/createError.js:16:15)n at settle (/home/vijin/workspace/stellar/node_modules/axios/lib/core/settle.js:18:12)n at IncomingMessage.handleStreamEnd (/home/vijin/workspace/stellar/node_modules/axios/lib/adapters/http.js:201:11)n at emitNone (events.js:111:20)n at IncomingMessage.emit (events.js:208:7)n at endReadableNT (_stream_readable.js:1064:12)n at _combinedTickCallback (internal/process/next_tick.js:139:11)n at process._tickCallback (internal/process/next_tick.js:181:9)"
__proto__:Object constructor: , name: "Error", message: "", …
Please let me know why I am facing this issue. I followed this link to set up stellar-core and horizon servers
https://labs.imaginea.com/post/stellar-bc-wallet/
Here is the reply from http://$HORIZON
"_links":
"account":
"href": "http://localhost:8000/accounts/account_id",
"templated": true
,
"account_transactions":
"href": "http://localhost:8000/accounts/account_id/transactions?cursor,limit,order",
"templated": true
,
"friendbot":
"href": "http://localhost:8000/friendbot?addr",
"templated": true
,
"metrics":
"href": "http://localhost:8000/metrics"
,
"order_book":
"href": "http://localhost:8000/order_book?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer",
"templated": true
,
"self":
"href": "http://localhost:8000/"
,
"transaction":
"href": "http://localhost:8000/transactions/hash",
"templated": true
,
"transactions":
"href": "http://localhost:8000/transactions?cursor,limit,order",
"templated": true
,
"horizon_version": "v0.11.1-dirty",
"core_version": "v10.2.0",
"history_latest_ledger": 3138,
"history_elder_ledger": 1,
"core_latest_ledger": 1,
"core_elder_ledger": 0,
"network_passphrase": "Standalone Pramati Network ; Oct 2018",
"protocol_version": 10
stellar
I am trying to create a Stellar Standalone network using my own network passphrase. I m able to set up stellar-core and horizon in my private network and it is working fine, I m able to get the root account balance through my nodejs code. But I m getting an tx_bad_seq when I m trying to create and fund an account. Here is my code
let kp = Stellar.Keypair.random();
let destinationId = kp.publicKey();
let sourceId = "GAZDSYG5HWIKHR76LUP5SGQBPYXYCFUIR45Z2WMOGITGY7JILDC6JAAF";
let sourceKeys = Stellar.Keypair.fromSecret("SDJ5AQWLIAYT22TCYSKOQALI3SNUMPAR63SEL73ASALDP6PYDN54FARM");
try
var sourceAccount = await server.loadAccount(sourceId);
var transaction = new Stellar.TransactionBuilder(sourceAccount)
.addOperation(
Stellar.Operation.createAccount(
destination: destinationId,
startingBalance: "100",
asset: Stellar.Asset.native()
))
.setTimeout(30)
.addMemo(Stellar.Memo.text('Creating account'))
.build();
transaction.sign(sourceKeys);
var result = await server.submitTransaction(transaction);
console.log(result);
res.send(result);
catch(error)
console.log(error);
res.send('Msg': 'error');
return;
res.send('Msg': 'Success');
Here is the error what I am getting
Error: Request failed with status code 400
app.js:221
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
message:"Request failed with status code 400"
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
response:Object status: 400, statusText: "Bad Request", headers: Object, …
config:Object adapter: , transformRequest: Object, transformResponse: Object, …
data:Object type: "https://stellar.org/horizon-errors/transaction_fai…", title: "Transaction Failed", status: 400, …
detail:"The transaction failed when submitted to the stellar network. The `extras.result_codes` field on this response contains further details. Descriptions of each code can be found at: https://www.stellar.org/developers/learn/concepts/list-of-operations.html"
extras:Object envelope_xdr: "AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAA…", result_codes: Object, result_xdr: "AAAAAAAAAGT////7AAAAAA=="
envelope_xdr:"AAAAADI5YN09kKPH/l0f2RoBfi+BFoiPO51ZjjImbH0oWMXkAAAAZAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAFx/mhAAAAABAAAAEENyZWF0aW5nIGFjY291bnQAAAABAAAAAAAAAAAAAAAAXsWc73Eg9YwKLtLg5HwSSx8mVxMgQzcBZwByeMRBIicAAAAAO5rKAAAAAAAAAAABKFjF5AAAAEBQMa0S5PH5zt9AMXqkX3b7cNuRo8KgybYc+1hUNaJNuU7T6G0FZyNq0/AalONixMRMyyUuMBQCF9SZSEVRDxkM"
result_codes:Object transaction: "tx_bad_seq"
transaction:"tx_bad_seq"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
result_xdr:"AAAAAAAAAGT////7AAAAAA=="
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
instance:"linux/0t8XxOn9u2-000004"
status:400
title:"Transaction Failed"
type:"https://stellar.org/horizon-errors/transaction_failed"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
headers:Object content-type: "application/problem+json; charset=utf-8", x-ratelimit-limit: "3600", x-ratelimit-remaining: "3596", …
request:ClientRequest domain: null, _events: Object, _eventsCount: 6, …
status:400
statusText:"Bad Request"
__proto__:Object constructor: , __defineGetter__: , __defineSetter__: , …
stack:"Error: Request failed with status code 400n at createError (/home/vijin/workspace/stellar/node_modules/axios/lib/core/createError.js:16:15)n at settle (/home/vijin/workspace/stellar/node_modules/axios/lib/core/settle.js:18:12)n at IncomingMessage.handleStreamEnd (/home/vijin/workspace/stellar/node_modules/axios/lib/adapters/http.js:201:11)n at emitNone (events.js:111:20)n at IncomingMessage.emit (events.js:208:7)n at endReadableNT (_stream_readable.js:1064:12)n at _combinedTickCallback (internal/process/next_tick.js:139:11)n at process._tickCallback (internal/process/next_tick.js:181:9)"
__proto__:Object constructor: , name: "Error", message: "", …
Please let me know why I am facing this issue. I followed this link to set up stellar-core and horizon servers
https://labs.imaginea.com/post/stellar-bc-wallet/
Here is the reply from http://$HORIZON
"_links":
"account":
"href": "http://localhost:8000/accounts/account_id",
"templated": true
,
"account_transactions":
"href": "http://localhost:8000/accounts/account_id/transactions?cursor,limit,order",
"templated": true
,
"friendbot":
"href": "http://localhost:8000/friendbot?addr",
"templated": true
,
"metrics":
"href": "http://localhost:8000/metrics"
,
"order_book":
"href": "http://localhost:8000/order_book?selling_asset_type,selling_asset_code,selling_issuer,buying_asset_type,buying_asset_code,buying_issuer",
"templated": true
,
"self":
"href": "http://localhost:8000/"
,
"transaction":
"href": "http://localhost:8000/transactions/hash",
"templated": true
,
"transactions":
"href": "http://localhost:8000/transactions?cursor,limit,order",
"templated": true
,
"horizon_version": "v0.11.1-dirty",
"core_version": "v10.2.0",
"history_latest_ledger": 3138,
"history_elder_ledger": 1,
"core_latest_ledger": 1,
"core_elder_ledger": 0,
"network_passphrase": "Standalone Pramati Network ; Oct 2018",
"protocol_version": 10
stellar
stellar
edited 22 hours ago
Vijin
asked yesterday
VijinVijin
135
135
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago
add a comment |
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago
add a comment |
1 Answer
1
active
oldest
votes
You are running an older version of the software. (It is reporting v0.11.1-dirty
, so it's both old and not a release).
The best way to get started is with the quickstart docker image.
Try again with the most up-to-date software and see if you have the same issues.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55022273%2ftx-bad-seq-error-when-funding-the-account-in-stellar-private-network%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are running an older version of the software. (It is reporting v0.11.1-dirty
, so it's both old and not a release).
The best way to get started is with the quickstart docker image.
Try again with the most up-to-date software and see if you have the same issues.
add a comment |
You are running an older version of the software. (It is reporting v0.11.1-dirty
, so it's both old and not a release).
The best way to get started is with the quickstart docker image.
Try again with the most up-to-date software and see if you have the same issues.
add a comment |
You are running an older version of the software. (It is reporting v0.11.1-dirty
, so it's both old and not a release).
The best way to get started is with the quickstart docker image.
Try again with the most up-to-date software and see if you have the same issues.
You are running an older version of the software. (It is reporting v0.11.1-dirty
, so it's both old and not a release).
The best way to get started is with the quickstart docker image.
Try again with the most up-to-date software and see if you have the same issues.
answered 17 hours ago
SynessoSynesso
20.4k27108168
20.4k27108168
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55022273%2ftx-bad-seq-error-when-funding-the-account-in-stellar-private-network%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you please share the document returned by http://$HORIZON/ ? That will give us information about your setup.
– Synesso
yesterday
@Synesso: I have edited the question as required by you and added the response from http://$HORIZON. Please let me know if you find something
– Vijin
22 hours ago