Skip to content

Commit

Permalink
fix rust fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Jun 3, 2024
1 parent cf34a5a commit fc69ab0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ Finally run
fly deploy
```

> ![note]
> Don't forget to relay the dApp its address at some point by running `cartesi send` otherwise withdrawals will be disabled
### Fullnode deployment

Update the DAPP_ADDRESS in the fly.fullnode.toml
Expand All @@ -51,7 +54,7 @@ Build and deploy the fullnode in one step by running

```shell
fly deploy --config fly.fullnode.toml
fly restart cartezcash-fullnode
fly app restart cartezcash-fullnode
```

### Bridge UI deployment
Expand Down
3 changes: 2 additions & 1 deletion src/service/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ impl TryFrom<(tower_cartesi::AdvanceStateMetadata, Vec<u8>)> for Request {
to: dest_t_address,
})
}
_ => { // If it is unrecognised then assume it is an inputBox message. This gets around a suspected bug
_ => {
// If it is unrecognised then assume it is an inputBox message. This gets around a suspected bug
/* Encoding
abi.encodePacked(
transaction bytes // arbitrary size
Expand Down

0 comments on commit fc69ab0

Please sign in to comment.