Account/get return

i start nis in local (testnet)
http:/127.0.01:7890/account/get?address=xxxx
{
“meta”: {
“cosignatories”: [],
“cosignatoryOf”: [],
“status”: “LOCKED”,
“remoteStatus”: “INACTIVE”
},
“account”: {
“address”: “xxxx”,
“harvestedBlocks”: 0,
“balance”: 0,
“importance”: 0,
“vestedBalance”: 0,
“publicKey”: null,
“label”: null,
“multisigInfo”: {}
}
}

but use this address
http://23.228.67.85:7890/account/get?address=xxxx
return
{
“meta”: {
“cosignatories”: [],
“cosignatoryOf”: [],
“status”: “LOCKED”,
“remoteStatus”: “INACTIVE”
},
“account”: {
“address”: “xxxx”,
“harvestedBlocks”: 0,
“balance”: 10000000,
“importance”: 0,
“vestedBalance”: 0,
“publicKey”: null,
“label”: null,
“multisigInfo”: {}
}
}

why balance is different?
thx

Maybe your NIS is not fully synchronized ?

You need to provide the address for anyone to be able to help you further. You should also check on chain.nem.ninja and see what that output is.

Other case may be that you asking remote nis working in mainnet node for testnet address. Please give address as @Saul have written.

TARCQ62P3YZUPOKFQNHYPL4MEO5RYXSKL6DLQKLV

and

how to check node is fully synchronized?
thx

You can verify account in test blockexplorer :
http://bob.nem.ninja:8765/#/search/TARCQ62P3YZUPOKFQNHYPL4MEO5RYXSKL6DLQKLV

You can verify block height using API :
https://nemproject.github.io/#block-chain-height

local node height is small ;
so , how to fast sync node;thx

Node should sync when you run it.
Verify if no exceptions or warnings are present in console. Did you change properties file to work in testnet?

modify:
nis/config.properties
nem.network = testnet

Blockquote
2017-12-26 09:18:47.461 WARNING Timer SYNC raised exception: org.nem.core.connect.FatalPeerException: Peer returned 500 with error: <�Internal Server Errorcould not extract ResultSet��*>
java.util.concurrent.CompletionException: org.nem.core.connect.FatalPeerException: Peer returned 500 with error: <�Internal Server Errorcould not extract ResultSet��*>
at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:273)
at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:280)
at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:604)
at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:577)
at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:474)
at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:1962)
at org.nem.core.connect.HttpMethodClient$HttpMethodClientFutureCallback.completed(HttpMethodClient.java:196)
at org.nem.core.connect.HttpMethodClient$HttpMethodClientFutureCallback.completed(HttpMethodClient.java:186)
at org.apache.http.concurrent.BasicFuture.completed(BasicFuture.java:119)
at org.apache.http.impl.nio.client.DefaultClientExchangeHandlerImpl.responseCompleted(DefaultClientExchangeHandlerImpl.java:177)
at org.apache.http.nio.protocol.HttpAsyncRequestExecutor.processResponse(HttpAsyncRequestExecutor.java:432)
at org.apache.http.nio.protocol.HttpAsyncRequestExecutor.inputReady(HttpAsyncRequestExecutor.java:325)
at org.apache.http.impl.nio.DefaultNHttpClientConnection.consumeInput(DefaultNHttpClientConnection.java:267)
at org.apache.http.impl.nio.client.InternalIODispatch.onInputReady(InternalIODispatch.java:81)
at org.apache.http.impl.nio.client.InternalIODispatch.onInputReady(InternalIODispatch.java:39)
at org.apache.http.impl.nio.reactor.AbstractIODispatch.inputReady(AbstractIODispatch.java:116)
at org.apache.http.impl.nio.reactor.BaseIOReactor.readable(BaseIOReactor.java:164)
at org.apache.http.impl.nio.reactor.AbstractIOReactor.processEvent(AbstractIOReactor.java:339)
at org.apache.http.impl.nio.reactor.AbstractIOReactor.processEvents(AbstractIOReactor.java:317)
at org.apache.http.impl.nio.reactor.AbstractIOReactor.execute(AbstractIOReactor.java:278)
at org.apache.http.impl.nio.reactor.BaseIOReactor.execute(BaseIOReactor.java:106)
at org.apache.http.impl.nio.reactor.AbstractMultiworkerIOReactor$Worker.run(AbstractMultiworkerIOReactor.java:590)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.nem.core.connect.FatalPeerException: Peer returned 500 with error: <�Internal Server Errorcould not extract ResultSet��*>
at org.nem.core.connect.HttpDeserializerResponseStrategy.coerce(HttpDeserializerResponseStrategy.java:29)
at org.nem.core.connect.HttpDeserializerResponseStrategy.coerce(HttpDeserializerResponseStrategy.java:14)
at org.nem.core.connect.HttpMethodClient.lambda$sendRequest$1(HttpMethodClient.java:121)
at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:602)
… 20 more
(org.nem.core.async.NemAsyncTimerVisitor notifyOperationCompleteExceptionally)

Looks like peer returns 500 when you connect :face_with_hand_over_mouth:
@BloodyRookie any solution for this (testnet)?