Skip to content

Commit

Permalink
fix: docs and go integration test increase max diff
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Jan 4, 2024
1 parent c7153f9 commit 4800ff9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/internal/test/simulate_transaction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func TestSimulateTransactionSucceeds(t *testing.T) {
assert.InDelta(t, uint32(expectedTransactionData.Resources.Instructions), uint32(transactionData.Resources.Instructions), 3200000)
assert.InDelta(t, uint32(expectedTransactionData.Resources.ReadBytes), uint32(transactionData.Resources.ReadBytes), 10)
assert.InDelta(t, uint32(expectedTransactionData.Resources.WriteBytes), uint32(transactionData.Resources.WriteBytes), 300)
assert.InDelta(t, int64(expectedTransactionData.ResourceFee), int64(transactionData.ResourceFee), 3000)
assert.InDelta(t, int64(expectedTransactionData.ResourceFee), int64(transactionData.ResourceFee), 6000)

// Then decode and check the result xdr, separately so we get a decent diff if it fails.
assert.Len(t, result.Results, 1)
Expand Down
4 changes: 2 additions & 2 deletions docs/soroban-cli-full-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Deprecated, use `soroban keys` and `soroban network` instead
###### **Subcommands:**

* `network` — Configure different networks. Depraecated, use `soroban network` instead
* `identity` — Identity management. Deprecated use `soroban keys` instead
* `identity` — Identity management. Deprecated, use `soroban keys` instead



Expand Down Expand Up @@ -220,7 +220,7 @@ List networks

## `soroban config identity`

Identity management. Deprecated use `soroban keys` instead
Identity management. Deprecated, use `soroban keys` instead

**Usage:** `soroban config identity <COMMAND>`

Expand Down

0 comments on commit 4800ff9

Please sign in to comment.