mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Numeric literal should conform to go 1.11
This commit is contained in:
parent
2ec32405e5
commit
cffc70055d
1 changed files with 2 additions and 1 deletions
|
|
@ -153,7 +153,8 @@ func TestPriorityClient(t *testing.T) {
|
|||
prioNodeInfo := make(map[string]interface{})
|
||||
prio.callRPC(&prioNodeInfo, "admin_nodeInfo")
|
||||
nodeID := prioNodeInfo["id"].(string)
|
||||
tokens := 3_000_000_000
|
||||
// 3_000_000_000 once we move to Go 1.13
|
||||
tokens := 3000000000
|
||||
server.callRPC(nil, "les_addBalance", nodeID, tokens, "foobar")
|
||||
prio.addPeer(serverEnode)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue