Skip to content

Commit

Permalink
Stringify amount
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Jul 9, 2024
1 parent fb3f1fe commit 3b92ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tipper_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def send(origin, amount, destination):
"wallet": WALLET_ID,
"source": origin,
"destination": destination,
"amount": amount
"amount": str(amount)
}
if BPOW_KEY is not None:
req["bpow_key"] = BPOW_KEY
Expand Down

0 comments on commit 3b92ac4

Please sign in to comment.